comparison runtime/doc/insert.txt @ 665:21ab9abf0f08

updated for version 7.0196
author vimboss
date Fri, 10 Feb 2006 23:20:28 +0000
parents d6a69271cb9a
children 9090f866cd57
comparison
equal deleted inserted replaced
664:ce5a759cc907 665:21ab9abf0f08
1 *insert.txt* For Vim version 7.0aa. Last change: 2006 Feb 07 1 *insert.txt* For Vim version 7.0aa. Last change: 2006 Feb 10
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1070 - The 'completeopt' option contains "menu". 1070 - The 'completeopt' option contains "menu".
1071 - The terminal supports at least 8 colors. 1071 - The terminal supports at least 8 colors.
1072 - There are at least two matches. 1072 - There are at least two matches.
1073 1073
1074 While the menu is displayed these keys have a special meaning: 1074 While the menu is displayed these keys have a special meaning:
1075 <CR> and <Enter> Accept the currently selected match 1075 <CR> and <Enter> Accept the currently selected match
1076 <Up> Select the previous match, as if CTRL-P was used 1076
1077 <Down> Select the next match, as if CTRL-N was used
1078 <PageUp> Select a match several entries back 1077 <PageUp> Select a match several entries back
1079 <PageDown> Select a match several entries further 1078 <PageDown> Select a match several entries further
1079
1080 <BS> and CTRL-H Delete one character, find the matches for the shorter word 1080 <BS> and CTRL-H Delete one character, find the matches for the shorter word
1081 before the cursor. This may find more matches. 1081 before the cursor. This may find more matches.
1082 CTRL-L Add one character from the current match, may reduce the 1082 CTRL-L Add one character from the current match, may reduce the
1083 number of matches. Does not work after selecting one of the 1083 number of matches. Does not work after selecting one of the
1084 matches with CTRL-N, <Up>, etc. 1084 matches with CTRL-N, <Up>, etc.
1085 <Up> Select the previous match, as if CTRL-P was used, but don't
1086 insert it when editing the selection.
1087 <Down> Select the next match, as if CTRL-N was used, but don't
1088 insert it when editing the selection.
1089
1090 The selection is being edited after typing <BS>, CTRL-L or when using the
1091 longest common match. This stops when a match is inserted, as with CTRL-N or
1092 CTRL-P.
1085 1093
1086 The colors of the menu can be changed with these highlight groups: 1094 The colors of the menu can be changed with these highlight groups:
1087 Pmenu normal item |hl-Pmenu| 1095 Pmenu normal item |hl-Pmenu|
1088 PmenuSel selected item |hl-PmenuSel| 1096 PmenuSel selected item |hl-PmenuSel|
1089 PmenuSbar scrollbar |hl-PmenuSbar| 1097 PmenuSbar scrollbar |hl-PmenuSbar|