1- *cmdline.txt* For Vim version 7.3. Last change: 2011 Feb 10
1+ *cmdline.txt* For Vim version 7.3. Last change: 2011 Mar 27
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -83,28 +83,28 @@ CTRL-V Insert next non-digit literally. Up to three digits form the
8383CTRL-Q Same as CTRL-V . But with some terminals it is used for
8484 control flow, it doesn't work then.
8585
86- *c_<Left>*
86+ *c_<Left>* *c_Left*
8787<Left> cursor left
88- *c_<Right>*
88+ *c_<Right>* *c_Right*
8989<Right> cursor right
9090 *c_<S-Left>*
9191<S-Left> or <C-Left> *c_<C-Left>*
9292 cursor one WORD left
9393 *c_<S-Right>*
9494<S-Right> or <C-Right> *c_<C-Right>*
9595 cursor one WORD right
96- CTRL-B or <Home> *c_CTRL-B* *c_<Home>*
96+ CTRL-B or <Home> *c_CTRL-B* *c_<Home>* *c_Home *
9797 cursor to beginning of command-line
98- CTRL-E or <End> *c_CTRL-E* *c_<End>*
98+ CTRL-E or <End> *c_CTRL-E* *c_<End>* *c_End *
9999 cursor to end of command-line
100100
101101 *c_<LeftMouse>*
102102<LeftMouse> Move the cursor to the position of the mouse click.
103103
104- CTRL-H *c_<BS>* *c_CTRL-H*
104+ CTRL-H *c_<BS>* *c_CTRL-H* *c_BS *
105105<BS> Delete the character in front of the cursor (see | :fixdel | if
106106 your <BS> key does not do what you want).
107- *c_<Del>*
107+ *c_<Del>* *c_Del*
108108<Del> Delete the character under the cursor (at end of line:
109109 character before the cursor) (see | :fixdel | if your <Del>
110110 key does not do what you want).
@@ -118,7 +118,7 @@ CTRL-U Remove all characters between the cursor position and
118118 preferred behavior, add the following to your .vimrc: >
119119 :cnoremap <C-U> <C-E><C-U>
120120<
121- *c_<Insert>*
121+ *c_<Insert>* *c_Insert *
122122<Insert> Toggle between insert and overstrike. {not in Vi}
123123
124124{char1} <BS> {char2} or *c_digraph*
@@ -224,9 +224,9 @@ CTRL-Y When there is a modeless selection, copy the selection into
224224 the clipboard. | modeless-selection |
225225 If there is no selection CTRL-Y is inserted as a character.
226226
227- CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>*
227+ CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR *
228228<CR> or <NL> start entered command
229- *c_<Esc>*
229+ *c_<Esc>* *c_Esc*
230230<Esc> When typed and 'x' not present in 'cpoptions' , quit
231231 Command-line mode without executing. In macros or when 'x'
232232 present in 'cpoptions' , start entered command.
@@ -235,12 +235,12 @@ CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>*
235235 *c_CTRL-C*
236236CTRL-C quit command-line without executing
237237
238- *c_<Up>*
238+ *c_<Up>* *c_Up*
239239<Up> recall older command-line from history, whose beginning
240240 matches the current command-line (see below).
241241 {not available when compiled without the | +cmdline_hist |
242242 feature}
243- *c_<Down>*
243+ *c_<Down>* *c_Down*
244244<Down> recall more recent command-line from history, whose beginning
245245 matches the current command-line (see below).
246246 {not available when compiled without the | +cmdline_hist |
@@ -865,7 +865,7 @@ These modifiers can be given, in this order:
865865 After this, the previous modifiers can be used again. For
866866 example ":p", to make a full path after the substitution.
867867 :gs?pat?sub?
868- Substitute all occurrences of "path " with "sub". Otherwise
868+ Substitute all occurrences of "pat " with "sub". Otherwise
869869 this works like ":s".
870870
871871Examples, when the file name is "src/version.c", current dir
0 commit comments