diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-10-19 22:36:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-10-19 22:36:53 +0200 |
commit | 4c5d815256099b50eca2ec5bf8f9aaa67a890211 (patch) | |
tree | 6d626537a4c82f86a43a90bec3fce98e54033949 /src/proto | |
parent | 42a4ea10af687ca56b0810bfbb8884b37fc725b3 (diff) | |
download | vim-git-4c5d815256099b50eca2ec5bf8f9aaa67a890211.tar.gz |
patch 8.1.0487: no menus specifically for the terminal windowv8.1.0487
Problem: No menus specifically for the terminal window.
Solution: Add :tlmenu. (Yee Cheng Chin, closes #3439) Add a menu test.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/menu.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/menu.pro b/src/proto/menu.pro index 63f8d11bd..411c040b4 100644 --- a/src/proto/menu.pro +++ b/src/proto/menu.pro @@ -19,7 +19,7 @@ void gui_create_initial_menus(vimmenu_T *menu); void gui_update_menus(int modes); int gui_is_menu_shortcut(int key); void gui_mch_toggle_tearoffs(int enable); -void execute_menu(exarg_T *eap, vimmenu_T *menu); +void execute_menu(exarg_T *eap, vimmenu_T *menu, int mode_idx); void ex_emenu(exarg_T *eap); void winbar_click(win_T *wp, int col); vimmenu_T *gui_find_menu(char_u *path_name); |