Mercurial > vim
view src/proto/menu.pro @ 2132:89300f5e013c v7.2.414
updated for version 7.2.414
Problem: CTRK-K <space> <space> does not produce 0xa0 as expected. (Tony
Mechelynck)
Solution: Remove the Unicode range 0xe000 - 0xefff from digraphs, these are
not valid characters.
author | Bram Moolenaar <bram@zimbu.org> |
---|---|
date | Fri, 07 May 2010 16:18:14 +0200 |
parents | d0830c09ed10 |
children | 21b0a39d13ed |
line wrap: on
line source
/* menu.c */ void ex_menu __ARGS((exarg_T *eap)); char_u *set_context_in_menu_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, int forceit)); char_u *get_menu_name __ARGS((expand_T *xp, int idx)); char_u *get_menu_names __ARGS((expand_T *xp, int idx)); char_u *menu_name_skip __ARGS((char_u *name)); int get_menu_index __ARGS((vimmenu_T *menu, int state)); int menu_is_menubar __ARGS((char_u *name)); int menu_is_popup __ARGS((char_u *name)); int menu_is_child_of_popup __ARGS((vimmenu_T *menu)); int menu_is_toolbar __ARGS((char_u *name)); int menu_is_separator __ARGS((char_u *name)); int check_menu_pointer __ARGS((vimmenu_T *root, vimmenu_T *menu_to_check)); void gui_create_initial_menus __ARGS((vimmenu_T *menu)); void gui_update_menus __ARGS((int modes)); int gui_is_menu_shortcut __ARGS((int key)); void gui_show_popupmenu __ARGS((void)); void gui_mch_toggle_tearoffs __ARGS((int enable)); void ex_emenu __ARGS((exarg_T *eap)); vimmenu_T *gui_find_menu __ARGS((char_u *path_name)); void ex_menutranslate __ARGS((exarg_T *eap)); /* vim: set ft=c : */