diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-05-03 21:28:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-05-03 21:28:47 +0000 |
commit | 8b2d9c4318eb24275d69bdf8b66680b544c1908d (patch) | |
tree | 1f07c7ad71eb34c5b8fc215a9218c75b38938a3d /src/menu.c | |
parent | 9c102387aff079b513533e93bb2a8109ccc1492c (diff) | |
download | vim-git-8b2d9c4318eb24275d69bdf8b66680b544c1908d.tar.gz |
updated for version 7.0g02
Diffstat (limited to 'src/menu.c')
-rw-r--r-- | src/menu.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/menu.c b/src/menu.c index dac4754cd..96a535ff4 100644 --- a/src/menu.c +++ b/src/menu.c @@ -91,6 +91,7 @@ ex_menu(eap) char_u *map_to; int noremap; int silent = FALSE; + int special = FALSE; int unmenu; char_u *map_buf; char_u *arg; @@ -131,6 +132,12 @@ ex_menu(eap) arg = skipwhite(arg + 8); continue; } + if (STRNCMP(arg, "<special>", 9) == 0) + { + special = TRUE; + arg = skipwhite(arg + 9); + continue; + } break; } @@ -390,7 +397,7 @@ ex_menu(eap) else if (modes & MENU_TIP_MODE) map_buf = NULL; /* Menu tips are plain text. */ else - map_to = replace_termcodes(map_to, &map_buf, FALSE, TRUE); + map_to = replace_termcodes(map_to, &map_buf, FALSE, TRUE, special); menuarg.modes = modes; #ifdef FEAT_TOOLBAR menuarg.iconfile = icon; |