blob: ecaa73e894974b016ff084674a7f0db204181c8e [file] [log] [blame]
Bram Moolenaar7ceefb32020-05-01 16:07:38 +02001*cmdline.txt* For Vim version 8.2. Last change: 2020 Apr 23
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *Cmdline-mode* *Command-line-mode*
8Command-line mode *Cmdline* *Command-line* *mode-cmdline* *:*
9
10Command-line mode is used to enter Ex commands (":"), search patterns
11("/" and "?"), and filter commands ("!").
12
13Basic command line editing is explained in chapter 20 of the user manual
14|usr_20.txt|.
15
161. Command-line editing |cmdline-editing|
172. Command-line completion |cmdline-completion|
183. Ex command-lines |cmdline-lines|
194. Ex command-line ranges |cmdline-ranges|
Bram Moolenaardf177f62005-02-22 08:39:57 +0000205. Ex command-line flags |ex-flags|
216. Ex special characters |cmdline-special|
227. Command-line window |cmdline-window|
Bram Moolenaar071d4272004-06-13 20:20:40 +000023
24==============================================================================
251. Command-line editing *cmdline-editing*
26
27Normally characters are inserted in front of the cursor position. You can
28move around in the command-line with the left and right cursor keys. With the
29<Insert> key, you can toggle between inserting and overstriking characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31Note that if your keyboard does not have working cursor keys or any of the
32other special keys, you can use ":cnoremap" to define another key for them.
33For example, to define tcsh style editing keys: *tcsh-style* >
34 :cnoremap <C-A> <Home>
35 :cnoremap <C-F> <Right>
36 :cnoremap <C-B> <Left>
37 :cnoremap <Esc>b <S-Left>
38 :cnoremap <Esc>f <S-Right>
39(<> notation |<>|; type all this literally)
40
41 *cmdline-too-long*
42When the command line is getting longer than what fits on the screen, only the
43part that fits will be shown. The cursor can only move in this visible part,
44thus you cannot edit beyond that.
45
46 *cmdline-history* *history*
47The command-lines that you enter are remembered in a history table. You can
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000048recall them with the up and down cursor keys. There are actually five
Bram Moolenaar071d4272004-06-13 20:20:40 +000049history tables:
50- one for ':' commands
51- one for search strings
52- one for expressions
53- one for input lines, typed for the |input()| function.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000054- one for debug mode commands
Bram Moolenaar071d4272004-06-13 20:20:40 +000055These are completely separate. Each history can only be accessed when
56entering the same type of line.
57Use the 'history' option to set the number of lines that are remembered
Bram Moolenaar6e932462014-09-09 18:48:09 +020058(default: 50).
Bram Moolenaar071d4272004-06-13 20:20:40 +000059Notes:
60- When you enter a command-line that is exactly the same as an older one, the
61 old one is removed (to avoid repeated commands moving older commands out of
62 the history).
63- Only commands that are typed are remembered. Ones that completely come from
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000064 mappings are not put in the history.
Bram Moolenaar071d4272004-06-13 20:20:40 +000065- All searches are put in the search history, including the ones that come
66 from commands like "*" and "#". But for a mapping, only the last search is
67 remembered (to avoid that long mappings trash the history).
Bram Moolenaar071d4272004-06-13 20:20:40 +000068{not available when compiled without the |+cmdline_hist| feature}
69
70There is an automatic completion of names on the command-line; see
71|cmdline-completion|.
72
73 *c_CTRL-V*
74CTRL-V Insert next non-digit literally. Up to three digits form the
75 decimal value of a single byte. The non-digit and the three
76 digits are not considered for mapping. This works the same
77 way as in Insert mode (see above, |i_CTRL-V|).
Bram Moolenaar6f345a12019-12-17 21:27:18 +010078 Note: Under MS-Windows CTRL-V is often mapped to paste text.
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 Use CTRL-Q instead then.
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +010080 When |modifyOtherKeys| is enabled then special Escape sequence
81 is converted back to what it was without |modifyOtherKeys|,
82 unless the Shift key is also pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 *c_CTRL-Q*
84CTRL-Q Same as CTRL-V. But with some terminals it is used for
85 control flow, it doesn't work then.
86
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +010087CTRL-SHIFT-V *c_CTRL-SHIFT-V* *c_CTRL-SHIFT-Q*
88CTRL-SHIFT-Q Works just like CTRL-V, unless |modifyOtherKeys| is active,
89 then it inserts the Escape sequence for a key with modifiers.
90
Bram Moolenaaradc21822011-04-01 18:03:16 +020091 *c_<Left>* *c_Left*
Bram Moolenaar071d4272004-06-13 20:20:40 +000092<Left> cursor left
Bram Moolenaaradc21822011-04-01 18:03:16 +020093 *c_<Right>* *c_Right*
Bram Moolenaar071d4272004-06-13 20:20:40 +000094<Right> cursor right
95 *c_<S-Left>*
96<S-Left> or <C-Left> *c_<C-Left>*
97 cursor one WORD left
98 *c_<S-Right>*
99<S-Right> or <C-Right> *c_<C-Right>*
100 cursor one WORD right
Bram Moolenaaradc21822011-04-01 18:03:16 +0200101CTRL-B or <Home> *c_CTRL-B* *c_<Home>* *c_Home*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102 cursor to beginning of command-line
Bram Moolenaaradc21822011-04-01 18:03:16 +0200103CTRL-E or <End> *c_CTRL-E* *c_<End>* *c_End*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 cursor to end of command-line
105
106 *c_<LeftMouse>*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000107<LeftMouse> Move the cursor to the position of the mouse click.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108
Bram Moolenaar256972a2015-12-29 19:10:25 +0100109 *c_<MiddleMouse>*
110<MiddleMouse> Paste the contents of the clipboard (for X11 the primary
111 selection). This is similar to using CTRL-R *, but no CR
112 characters are inserted between lines.
113
Bram Moolenaaradc21822011-04-01 18:03:16 +0200114CTRL-H *c_<BS>* *c_CTRL-H* *c_BS*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000115<BS> Delete the character in front of the cursor (see |:fixdel| if
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 your <BS> key does not do what you want).
Bram Moolenaaradc21822011-04-01 18:03:16 +0200117 *c_<Del>* *c_Del*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000118<Del> Delete the character under the cursor (at end of line:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 character before the cursor) (see |:fixdel| if your <Del>
120 key does not do what you want).
121 *c_CTRL-W*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000122CTRL-W Delete the |word| before the cursor. This depends on the
123 'iskeyword' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124 *c_CTRL-U*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000125CTRL-U Remove all characters between the cursor position and
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 the beginning of the line. Previous versions of vim
127 deleted all characters on the line. If that is the
128 preferred behavior, add the following to your .vimrc: >
129 :cnoremap <C-U> <C-E><C-U>
130<
Bram Moolenaaradc21822011-04-01 18:03:16 +0200131 *c_<Insert>* *c_Insert*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200132<Insert> Toggle between insert and overstrike.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133
134{char1} <BS> {char2} or *c_digraph*
135CTRL-K {char1} {char2} *c_CTRL-K*
136 enter digraph (see |digraphs|). When {char1} is a special
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200137 key, the code for that key is inserted in <> form.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaar5be4cee2019-09-27 19:34:08 +0200139CTRL-R {register} *c_CTRL-R* *c_<C-R>*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140 Insert the contents of a numbered or named register. Between
141 typing CTRL-R and the second character '"' will be displayed
142 to indicate that you are expected to enter the name of a
143 register.
144 The text is inserted as if you typed it, but mappings and
145 abbreviations are not used. Command-line completion through
146 'wildchar' is not triggered though. And characters that end
147 the command line are inserted literally (<Esc>, <CR>, <NL>,
148 <C-C>). A <BS> or CTRL-W could still end the command line
149 though, and remaining characters will then be interpreted in
150 another mode, which might not be what you intended.
151 Special registers:
152 '"' the unnamed register, containing the text of
153 the last delete or yank
154 '%' the current file name
155 '#' the alternate file name
156 '*' the clipboard contents (X11: primary selection)
157 '+' the clipboard contents
158 '/' the last search pattern
159 ':' the last command-line
160 '-' the last small (less than a line) delete
161 '.' the last inserted text
162 *c_CTRL-R_=*
163 '=' the expression register: you are prompted to
164 enter an expression (see |expression|)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000165 (doesn't work at the expression prompt; some
166 things such as changing the buffer or current
167 window are not allowed to avoid side effects)
Bram Moolenaard812df62008-11-09 12:46:09 +0000168 When the result is a |List| the items are used
169 as lines. They can have line breaks inside
170 too.
171 When the result is a Float it's automatically
172 converted to a String.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200173 See |registers| about registers.
Bram Moolenaarfd371682005-01-14 21:42:54 +0000174 Implementation detail: When using the |expression| register
175 and invoking setcmdpos(), this sets the position before
176 inserting the resulting string. Use CTRL-R CTRL-R to set the
177 position afterwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
179CTRL-R CTRL-F *c_CTRL-R_CTRL-F* *c_<C-R>_<C-F>*
180CTRL-R CTRL-P *c_CTRL-R_CTRL-P* *c_<C-R>_<C-P>*
181CTRL-R CTRL-W *c_CTRL-R_CTRL-W* *c_<C-R>_<C-W>*
182CTRL-R CTRL-A *c_CTRL-R_CTRL-A* *c_<C-R>_<C-A>*
Bram Moolenaare2c8d832018-05-01 19:24:03 +0200183CTRL-R CTRL-L *c_CTRL-R_CTRL-L* *c_<C-R>_<C-L>*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 Insert the object under the cursor:
185 CTRL-F the Filename under the cursor
186 CTRL-P the Filename under the cursor, expanded with
187 'path' as in |gf|
188 CTRL-W the Word under the cursor
189 CTRL-A the WORD under the cursor; see |WORD|
Bram Moolenaare2c8d832018-05-01 19:24:03 +0200190 CTRL-L the line under the cursor
Bram Moolenaard3667a22006-03-16 21:35:52 +0000191
192 When 'incsearch' is set the cursor position at the end of the
193 currently displayed match is used. With CTRL-W the part of
194 the word that was already typed is not inserted again.
195
Bram Moolenaardb84e452010-08-15 13:50:43 +0200196 CTRL-F and CTRL-P: {only when |+file_in_path| feature is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 included}
198
199 *c_CTRL-R_CTRL-R* *c_<C-R>_<C-R>*
200 *c_CTRL-R_CTRL-O* *c_<C-R>_<C-O>*
Bram Moolenaar5be4cee2019-09-27 19:34:08 +0200201CTRL-R CTRL-R {register CTRL-F CTRL-P CTRL-W CTRL-A CTRL-L}
202CTRL-R CTRL-O {register CTRL-F CTRL-P CTRL-W CTRL-A CTRL-L}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 Insert register or object under the cursor. Works like
204 |c_CTRL-R| but inserts the text literally. For example, if
205 register a contains "xy^Hz" (where ^H is a backspace),
206 "CTRL-R a" will insert "xz" while "CTRL-R CTRL-R a" will
207 insert "xy^Hz".
208
209CTRL-\ e {expr} *c_CTRL-\_e*
210 Evaluate {expr} and replace the whole command line with the
211 result. You will be prompted for the expression, type <Enter>
212 to finish it. It's most useful in mappings though. See
213 |expression|.
214 See |c_CTRL-R_=| for inserting the result of an expression.
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000215 Useful functions are |getcmdtype()|, |getcmdline()| and
216 |getcmdpos()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 The cursor position is unchanged, except when the cursor was
218 at the end of the line, then it stays at the end.
219 |setcmdpos()| can be used to set the cursor position.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000220 The |sandbox| is used for evaluating the expression to avoid
221 nasty side effects.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 Example: >
223 :cmap <F7> <C-\>eAppendSome()<CR>
224 :func AppendSome()
225 :let cmd = getcmdline() . " Some()"
226 :" place the cursor on the )
227 :call setcmdpos(strlen(cmd))
228 :return cmd
229 :endfunc
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000230< This doesn't work recursively, thus not when already editing
Bram Moolenaar3a0d8092012-10-21 03:02:54 +0200231 an expression. But it is possible to use in a mapping.
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000232
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 *c_CTRL-Y*
234CTRL-Y When there is a modeless selection, copy the selection into
235 the clipboard. |modeless-selection|
236 If there is no selection CTRL-Y is inserted as a character.
237
Bram Moolenaar2ec618c2016-10-01 14:47:05 +0200238CTRL-M or CTRL-J *c_CTRL-M* *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239<CR> or <NL> start entered command
Bram Moolenaar2ec618c2016-10-01 14:47:05 +0200240
241CTRL-[ *c_CTRL-[* *c_<Esc>* *c_Esc*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242<Esc> When typed and 'x' not present in 'cpoptions', quit
243 Command-line mode without executing. In macros or when 'x'
244 present in 'cpoptions', start entered command.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000245 Note: If your <Esc> key is hard to hit on your keyboard, train
246 yourself to use CTRL-[.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 *c_CTRL-C*
248CTRL-C quit command-line without executing
249
Bram Moolenaaradc21822011-04-01 18:03:16 +0200250 *c_<Up>* *c_Up*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251<Up> recall older command-line from history, whose beginning
252 matches the current command-line (see below).
253 {not available when compiled without the |+cmdline_hist|
254 feature}
Bram Moolenaaradc21822011-04-01 18:03:16 +0200255 *c_<Down>* *c_Down*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256<Down> recall more recent command-line from history, whose beginning
257 matches the current command-line (see below).
258 {not available when compiled without the |+cmdline_hist|
259 feature}
260
261 *c_<S-Up>* *c_<PageUp>*
262<S-Up> or <PageUp>
263 recall older command-line from history
264 {not available when compiled without the |+cmdline_hist|
265 feature}
266 *c_<S-Down>* *c_<PageDown>*
267<S-Down> or <PageDown>
268 recall more recent command-line from history
269 {not available when compiled without the |+cmdline_hist|
270 feature}
271
272CTRL-D command-line completion (see |cmdline-completion|)
273'wildchar' option
274 command-line completion (see |cmdline-completion|)
275CTRL-N command-line completion (see |cmdline-completion|)
276CTRL-P command-line completion (see |cmdline-completion|)
277CTRL-A command-line completion (see |cmdline-completion|)
278CTRL-L command-line completion (see |cmdline-completion|)
279
280 *c_CTRL-_*
281CTRL-_ a - switch between Hebrew and English keyboard mode, which is
282 private to the command-line and not related to hkmap.
283 This is useful when Hebrew text entry is required in the
284 command-line, searches, abbreviations, etc. Applies only if
285 Vim is compiled with the |+rightleft| feature and the
286 'allowrevins' option is set.
287 See |rileft.txt|.
288
289 b - switch between Farsi and English keyboard mode, which is
290 private to the command-line and not related to fkmap. In
291 Farsi keyboard mode the characters are inserted in reverse
292 insert manner. This is useful when Farsi text entry is
293 required in the command-line, searches, abbreviations, etc.
294 Applies only if Vim is compiled with the |+farsi| feature.
295 See |farsi.txt|.
296
297 *c_CTRL-^*
298CTRL-^ Toggle the use of language |:lmap| mappings and/or Input
299 Method.
300 When typing a pattern for a search command and 'imsearch' is
301 not -1, VAL is the value of 'imsearch', otherwise VAL is the
302 value of 'iminsert'.
303 When language mappings are defined:
304 - If VAL is 1 (langmap mappings used) it becomes 0 (no langmap
305 mappings used).
306 - If VAL was not 1 it becomes 1, thus langmap mappings are
307 enabled.
308 When no language mappings are defined:
309 - If VAL is 2 (Input Method is used) it becomes 0 (no input
310 method used)
311 - If VAL has another value it becomes 2, thus the Input Method
312 is enabled.
313 These language mappings are normally used to type characters
314 that are different from what the keyboard produces. The
315 'keymap' option can be used to install a whole number of them.
316 When entering a command line, langmap mappings are switched
317 off, since you are expected to type a command. After
318 switching it on with CTRL-^, the new state is not used again
319 for the next command or Search pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320
Bram Moolenaar9964e462007-05-05 17:54:07 +0000321 *c_CTRL-]*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200322CTRL-] Trigger abbreviation, without inserting a character.
Bram Moolenaar9964e462007-05-05 17:54:07 +0000323
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324For Emacs-style editing on the command-line see |emacs-keys|.
325
326The <Up> and <Down> keys take the current command-line as a search string.
327The beginning of the next/previous command-lines are compared with this
328string. The first line that matches is the new command-line. When typing
329these two keys repeatedly, the same string is used again. For example, this
330can be used to find the previous substitute command: Type ":s" and then <Up>.
331The same could be done by typing <S-Up> a number of times until the desired
332command-line is shown. (Note: the shifted arrow keys do not work on all
333terminals)
334
Bram Moolenaar066b6222008-01-04 14:17:47 +0000335 *:his* *:history*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336:his[tory] Print the history of last entered commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {not available when compiled without the |+cmdline_hist|
338 feature}
339
340:his[tory] [{name}] [{first}][, [{last}]]
341 List the contents of history {name} which can be:
Bram Moolenaar5ae636b2012-04-30 18:48:53 +0200342 c[md] or : command-line history
343 s[earch] or / or ? search string history
344 e[xpr] or = expression register history
345 i[nput] or @ input line history
346 d[ebug] or > debug command history
347 a[ll] all of the above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348
349 If the numbers {first} and/or {last} are given, the respective
350 range of entries from a history is listed. These numbers can
351 be specified in the following form:
352 *:history-indexing*
353 A positive number represents the absolute index of an entry
354 as it is given in the first column of a :history listing.
355 This number remains fixed even if other entries are deleted.
356
357 A negative number means the relative position of an entry,
358 counted from the newest entry (which has index -1) backwards.
359
360 Examples:
361 List entries 6 to 12 from the search history: >
362 :history / 6,12
363<
Bram Moolenaareebd84e2016-12-01 17:57:44 +0100364 List the penultimate entry from all histories: >
365 :history all -2
366<
367 List the most recent two entries from all histories: >
368 :history all -2,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
Bram Moolenaara939e432013-11-09 05:30:26 +0100370:keepp[atterns] {command} *:keepp* *:keeppatterns*
371 Execute {command}, without adding anything to the search
372 history
373
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374==============================================================================
3752. Command-line completion *cmdline-completion*
376
377When editing the command-line, a few commands can be used to complete the
378word before the cursor. This is available for:
379
380- Command names: At the start of the command-line.
381- Tags: Only after the ":tag" command.
382- File names: Only after a command that accepts a file name or a setting for
383 an option that can be set to a file name. This is called file name
384 completion.
Bram Moolenaara2031822006-03-07 22:29:51 +0000385- Shell command names: After ":!cmd", ":r !cmd" and ":w !cmd". $PATH is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386- Options: Only after the ":set" command.
387- Mappings: Only after a ":map" or similar command.
388- Variable and function names: Only after a ":if", ":call" or similar command.
389
Bram Moolenaar0a52df52019-08-18 22:26:31 +0200390The number of help item matches is limited (currently to 300) to avoid a long
391delay when there are very many matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
393These are the commands that can be used:
394
395 *c_CTRL-D*
396CTRL-D List names that match the pattern in front of the cursor.
397 When showing file names, directories are highlighted (see
398 'highlight' option). Names where 'suffixes' matches are moved
399 to the end.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000400 The 'wildoptions' option can be set to "tagfile" to list the
401 file of matching tags.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 *c_CTRL-I* *c_wildchar* *c_<Tab>*
403'wildchar' option
404 A match is done on the pattern in front of the cursor. The
405 match (if there are several, the first match) is inserted
406 in place of the pattern. (Note: does not work inside a
407 macro, because <Tab> or <Esc> are mostly used as 'wildchar',
408 and these have a special meaning in some macros.) When typed
409 again and there were multiple matches, the next
410 match is inserted. After the last match, the first is used
411 again (wrap around).
412 The behavior can be changed with the 'wildmode' option.
Bram Moolenaar7db25fe2018-05-13 00:02:36 +0200413 *c_<S-Tab>*
414<S-Tab> Like 'wildchar' or <Tab>, but begin with the last match and
415 then go to the previous match.
416 <S-Tab> does not work everywhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 *c_CTRL-N*
418CTRL-N After using 'wildchar' which got multiple matches, go to next
419 match. Otherwise recall more recent command-line from history.
Bram Moolenaar7db25fe2018-05-13 00:02:36 +0200420 *c_CTRL-P*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421CTRL-P After using 'wildchar' which got multiple matches, go to
422 previous match. Otherwise recall older command-line from
Bram Moolenaar7db25fe2018-05-13 00:02:36 +0200423 history.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 *c_CTRL-A*
425CTRL-A All names that match the pattern in front of the cursor are
426 inserted.
427 *c_CTRL-L*
428CTRL-L A match is done on the pattern in front of the cursor. If
429 there is one match, it is inserted in place of the pattern.
430 If there are multiple matches the longest common part is
431 inserted in place of the pattern. If the result is shorter
432 than the pattern, no completion is done.
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200433 */_CTRL-L*
Bram Moolenaard3667a22006-03-16 21:35:52 +0000434 When 'incsearch' is set, entering a search pattern for "/" or
435 "?" and the current match is displayed then CTRL-L will add
Bram Moolenaara9dc3752010-07-11 20:46:53 +0200436 one character from the end of the current match. If
437 'ignorecase' and 'smartcase' are set and the command line has
438 no uppercase characters, the added character is converted to
439 lowercase.
Bram Moolenaar11956692016-08-27 16:26:56 +0200440 *c_CTRL-G* */_CTRL-G*
441CTRL-G When 'incsearch' is set, entering a search pattern for "/" or
442 "?" and the current match is displayed then CTRL-G will move
443 to the next match (does not take |search-offset| into account)
444 Use CTRL-T to move to the previous match. Hint: on a regular
445 keyboard T is above G.
446 *c_CTRL-T* */_CTRL-T*
447CTRL-T When 'incsearch' is set, entering a search pattern for "/" or
448 "?" and the current match is displayed then CTRL-T will move
449 to the previous match (does not take |search-offset| into
450 account).
451 Use CTRL-G to move to the next match. Hint: on a regular
452 keyboard T is above G.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453
454The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in
455a previous version <Esc> was used). In the pattern standard wildcards '*' and
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200456'?' are accepted when matching file names. '*' matches any string, '?'
457matches exactly one character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458
Bram Moolenaar259f26a2018-05-15 22:25:40 +0200459When repeating 'wildchar' or CTRL-N you cycle through the matches, eventually
460ending up back to what was typed. If the first match is not what you wanted,
461you can use <S-Tab> or CTRL-P to go straight back to what you typed.
462
Bram Moolenaar5dc62522012-02-13 00:05:22 +0100463The 'wildignorecase' option can be set to ignore case in filenames.
464
Bram Moolenaar74675a62017-07-15 13:53:23 +0200465The 'wildmenu' option can be set to show the matches just above the command
466line.
467
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468If you like tcsh's autolist completion, you can use this mapping:
469 :cnoremap X <C-L><C-D>
470(Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D)
471This will find the longest match and then list all matching files.
472
473If you like tcsh's autolist completion, you can use the 'wildmode' option to
474emulate it. For example, this mimics autolist=ambiguous:
475 :set wildmode=longest,list
476This will find the longest match with the first 'wildchar', then list all
477matching files with the next.
478
Bram Moolenaareab6dff2020-03-01 19:06:45 +0100479 *complete-script-local-functions*
480When completing user function names, prepend "s:" to find script-local
481functions.
482
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 *suffixes*
484For file name completion you can use the 'suffixes' option to set a priority
485between files with almost the same name. If there are multiple matches,
486those files with an extension that is in the 'suffixes' option are ignored.
487The default is ".bak,~,.o,.h,.info,.swp,.obj", which means that files ending
488in ".bak", "~", ".o", ".h", ".info", ".swp" and ".obj" are sometimes ignored.
Bram Moolenaar055a2ba2009-07-14 19:40:21 +0000489
490An empty entry, two consecutive commas, match a file name that does not
491contain a ".", thus has no suffix. This is useful to ignore "prog" and prefer
492"prog.c".
493
494Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495
496 pattern: files: match: ~
497 test* test.c test.h test.o test.c
498 test* test.h test.o test.h and test.o
499 test* test.i test.h test.c test.i and test.c
500
Bram Moolenaar055a2ba2009-07-14 19:40:21 +0000501It is impossible to ignore suffixes with two dots.
502
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503If there is more than one matching file (after ignoring the ones matching
504the 'suffixes' option) the first file name is inserted. You can see that
505there is only one match when you type 'wildchar' twice and the completed
506match stays the same. You can get to the other matches by entering
507'wildchar', CTRL-N or CTRL-P. All files are included, also the ones with
508extensions matching the 'suffixes' option.
509
510To completely ignore files with some extension use 'wildignore'.
511
Bram Moolenaar066b6222008-01-04 14:17:47 +0000512To match only files that end at the end of the typed text append a "$". For
513example, to match only files that end in ".c": >
514 :e *.c$
515This will not match a file ending in ".cpp". Without the "$" it does match.
516
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517The old value of an option can be obtained by hitting 'wildchar' just after
518the '='. For example, typing 'wildchar' after ":set dir=" will insert the
519current value of 'dir'. This overrules file name completion for the options
520that take a file name.
521
522If you would like using <S-Tab> for CTRL-P in an xterm, put this command in
523your .cshrc: >
524 xmodmap -e "keysym Tab = Tab Find"
525And this in your .vimrc: >
526 :cmap <Esc>[1~ <C-P>
527
528==============================================================================
5293. Ex command-lines *cmdline-lines*
530
531The Ex commands have a few specialties:
532
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100533 *:quote* *:comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534'"' at the start of a line causes the whole line to be ignored. '"'
535after a command causes the rest of the line to be ignored. This can be used
536to add comments. Example: >
537 :set ai "set 'autoindent' option
538It is not possible to add a comment to a shell command ":!cmd" or to the
Bram Moolenaar2c64ca12018-10-19 16:22:31 +0200539":map" command and a few others (mainly commands that expect expressions)
540that see the '"' as part of their argument:
541
542 :argdo
543 :autocmd
544 :bufdo
545 :cexpr (and the like)
Bram Moolenaar2c64ca12018-10-19 16:22:31 +0200546 :cdo (and the like)
547 :command
548 :cscope (and the like)
549 :debug
550 :display
551 :echo (and the like)
552 :elseif
553 :execute
554 :folddoopen
555 :folddoclosed
556 :for
557 :grep (and the like)
558 :help (and the like)
559 :if
560 :let
561 :make
562 :map (and the like including :abbrev commands)
563 :menu (and the like)
564 :mkspell
565 :normal
566 :ownsyntax
567 :popup
568 :promptfind (and the like)
569 :registers
570 :return
571 :sort
572 :syntax
573 :tabdo
574 :tearoff
575 :vimgrep (and the like)
576 :while
577 :windo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
579 *:bar* *:\bar*
580'|' can be used to separate commands, so you can give multiple commands in one
581line. If you want to use '|' in an argument, precede it with '\'.
582
583These commands see the '|' as their argument, and can therefore not be
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000584followed by another Vim command:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 :argdo
586 :autocmd
587 :bufdo
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200588 :cdo
589 :cfdo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 :command
591 :cscope
592 :debug
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +0100593 :eval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 :folddoopen
595 :folddoclosed
596 :function
597 :global
598 :help
599 :helpfind
Bram Moolenaar110bc6b2006-02-10 23:13:40 +0000600 :lcscope
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200601 :ldo
602 :lfdo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 :make
604 :normal
605 :perl
606 :perldo
607 :promptfind
608 :promptrepl
609 :pyfile
610 :python
611 :registers
612 :read !
613 :scscope
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200614 :sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 :tcl
616 :tcldo
617 :tclfile
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200618 :terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 :vglobal
620 :windo
621 :write !
622 :[range]!
623 a user defined command without the "-bar" argument |:command|
624
625Note that this is confusing (inherited from Vi): With ":g" the '|' is included
626in the command, with ":s" it is not.
627
628To be able to use another command anyway, use the ":execute" command.
629Example (append the output of "ls" and jump to the first line): >
630 :execute 'r !ls' | '[
631
632There is one exception: When the 'b' flag is present in 'cpoptions', with the
633":map" and ":abbr" commands and friends CTRL-V needs to be used instead of
634'\'. You can also use "<Bar>" instead. See also |map_bar|.
635
636Examples: >
637 :!ls | wc view the output of two commands
638 :r !ls | wc insert the same output in the text
639 :%g/foo/p|> moves all matching lines one shiftwidth
640 :%s/foo/bar/|> moves one line one shiftwidth
641 :map q 10^V| map "q" to "10|"
642 :map q 10\| map \ l map "q" to "10\" and map "\" to "l"
643 (when 'b' is present in 'cpoptions')
644
645You can also use <NL> to separate commands in the same way as with '|'. To
646insert a <NL> use CTRL-V CTRL-J. "^@" will be shown. Using '|' is the
647preferred method. But for external commands a <NL> must be used, because a
648'|' is included in the external command. To avoid the special meaning of <NL>
649it must be preceded with a backslash. Example: >
650 :r !date<NL>-join
651This reads the current date into the file and joins it with the previous line.
652
653Note that when the command before the '|' generates an error, the following
654commands will not be executed.
655
656
657Because of Vi compatibility the following strange commands are supported: >
658 :| print current line (like ":p")
659 :3| print line 3 (like ":3p")
660 :3 goto line 3
661
662A colon is allowed between the range and the command name. It is ignored
663(this is Vi compatible). For example: >
664 :1,$:s/pat/string
665
666When the character '%' or '#' is used where a file name is expected, they are
667expanded to the current and alternate file name (see the chapter "editing
668files" |:_%| |:_#|).
669
670Embedded spaces in file names are allowed on the Amiga if one file name is
671expected as argument. Trailing spaces will be ignored, unless escaped with a
672backslash or CTRL-V. Note that the ":next" command uses spaces to separate
673file names. Escape the spaces to include them in a file name. Example: >
674 :next foo\ bar goes\ to school\
675starts editing the three files "foo bar", "goes to" and "school ".
676
677When you want to use the special characters '"' or '|' in a command, or want
678to use '%' or '#' in a file name, precede them with a backslash. The
679backslash is not required in a range and in the ":substitute" command.
Bram Moolenaarf9132812015-07-21 19:19:13 +0200680See also |`=|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681
682 *:_!*
683The '!' (bang) character after an Ex command makes the command behave in a
684different way. The '!' should be placed immediately after the command, without
685any blanks in between. If you insert blanks the '!' will be seen as an
686argument for the command, which has a different meaning. For example:
687 :w! name write the current buffer to file "name", overwriting
688 any existing file
689 :w !name send the current buffer as standard input to command
690 "name"
691
692==============================================================================
Bram Moolenaara5792f52005-11-23 21:25:05 +00006934. Ex command-line ranges *cmdline-ranges* *[range]* *E16*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694
695Some Ex commands accept a line range in front of them. This is noted as
696[range]. It consists of one or more line specifiers, separated with ',' or
697';'.
698
699The basics are explained in section |10.3| of the user manual.
700
701 *:,* *:;*
702When separated with ';' the cursor position will be set to that line
703before interpreting the next line specifier. This doesn't happen for ','.
704Examples: >
705 4,/this line/
706< from line 4 till match with "this line" after the cursor line. >
707 5;/that line/
708< from line 5 till match with "that line" after line 5.
709
710The default line specifier for most commands is the cursor position, but the
711commands ":write" and ":global" have the whole file (1,$) as default.
712
713If more line specifiers are given than required for the command, the first
714one(s) will be ignored.
715
Bram Moolenaar088e8e32019-08-08 22:15:18 +0200716Line numbers may be specified with: *:range* *{address}*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 {number} an absolute line number
718 . the current line *:.*
719 $ the last line in the file *:$*
720 % equal to 1,$ (the entire file) *:%*
721 't position of mark t (lowercase) *:'*
722 'T position of mark T (uppercase); when the mark is in
723 another file it cannot be used in a range
724 /{pattern}[/] the next line where {pattern} matches *:/*
725 ?{pattern}[?] the previous line where {pattern} matches *:?*
726 \/ the next line where the previously used search
727 pattern matches
728 \? the previous line where the previously used search
729 pattern matches
730 \& the next line where the previously used substitute
731 pattern matches
732
733Each may be followed (several times) by '+' or '-' and an optional number.
734This number is added or subtracted from the preceding line number. If the
735number is omitted, 1 is used.
736
737The "/" and "?" after {pattern} are required to separate the pattern from
738anything that follows.
739
740The "/" and "?" may be preceded with another address. The search starts from
741there. The difference from using ';' is that the cursor isn't moved.
742Examples: >
743 /pat1//pat2/ Find line containing "pat2" after line containing
744 "pat1", without moving the cursor.
745 7;/pat2/ Find line containing "pat2", after line 7, leaving
746 the cursor in line 7.
747
748The {number} must be between 0 and the number of lines in the file. When
749using a 0 (zero) this is interpreted as a 1 by most commands. Commands that
750use it as a count do use it as a zero (|:tag|, |:pop|, etc). Some commands
751interpret the zero as "before the first line" (|:read|, search pattern, etc).
752
753Examples: >
754 .+3 three lines below the cursor
755 /that/+1 the line below the next line containing "that"
756 .,$ from current line until end of file
757 0;/that the first line containing "that", also matches in the
758 first line.
759 1;/that the first line after line 1 containing "that"
760
761Some commands allow for a count after the command. This count is used as the
762number of lines to be used, starting with the line given in the last line
763specifier (the default is the cursor line). The commands that accept a count
764are the ones that use a range but do not have a file name argument (because
765a file name can also be a number).
766
767Examples: >
768 :s/x/X/g 5 substitute 'x' by 'X' in the current line and four
769 following lines
770 :23d 4 delete lines 23, 24, 25 and 26
771
772
773Folds and Range
774
775When folds are active the line numbers are rounded off to include the whole
776closed fold. See |fold-behavior|.
777
778
Bram Moolenaara5792f52005-11-23 21:25:05 +0000779Reverse Range *E493*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780
781A range should have the lower line number first. If this is not the case, Vim
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000782will ask you if it should swap the line numbers.
Bram Moolenaara5792f52005-11-23 21:25:05 +0000783 Backwards range given, OK to swap ~
784This is not done within the global command ":g".
785
786You can use ":silent" before a command to avoid the question, the range will
787always be swapped then.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789
790Count and Range *N:*
791
792When giving a count before entering ":", this is translated into:
793 :.,.+(count - 1)
794In words: The 'count' lines at and after the cursor. Example: To delete
795three lines: >
796 3:d<CR> is translated into: .,.+2d<CR>
797<
798
799Visual Mode and Range *v_:*
800
801{Visual}: Starts a command-line with the Visual selected lines as a
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100802 range. The code `:'<,'>` is used for this range, which makes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 it possible to select a similar line from the command-line
804 history for repeating a command on different Visually selected
805 lines.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100806 When Visual mode was already ended, a short way to use the
807 Visual area for a range is `:*`. This requires that "*" does
808 not appear in 'cpo', see |cpo-star|. Otherwise you will have
809 to type `:'<,'>`
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812==============================================================================
Bram Moolenaardf177f62005-02-22 08:39:57 +00008135. Ex command-line flags *ex-flags*
814
815These flags are supported by a selection of Ex commands. They print the line
816that the cursor ends up after executing the command:
817
818 l output like for |:list|
819 # add line number
820 p output like for |:print|
821
822The flags can be combined, thus "l#" uses both a line number and |:list| style
823output.
824
825==============================================================================
8266. Ex special characters *cmdline-special*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827
Bram Moolenaar8fa04452005-12-23 22:13:51 +0000828Note: These are special characters in the executed command line. If you want
829to insert special things while typing you can use the CTRL-R command. For
830example, "%" stands for the current file name, while CTRL-R % inserts the
831current file name right away. See |c_CTRL-R|.
832
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +0200833Note: If you want to avoid the effects of special characters in a Vim script
834you may want to use |fnameescape()|. Also see |`=|.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000835
Bram Moolenaar8fa04452005-12-23 22:13:51 +0000836
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837In Ex commands, at places where a file name can be used, the following
838characters have a special meaning. These can also be used in the expression
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +0200839function |expand()|.
Bram Moolenaard812df62008-11-09 12:46:09 +0000840 % Is replaced with the current file name. *:_%* *c_%*
841 # Is replaced with the alternate file name. *:_#* *c_#*
Bram Moolenaar36782082013-11-28 13:53:34 +0100842 This is remembered for every window.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100843 #n (where n is a number) is replaced with *:_#0* *:_#n*
844 the file name of buffer n. "#0" is the same as "#". *c_#n*
Bram Moolenaard812df62008-11-09 12:46:09 +0000845 ## Is replaced with all names in the argument list *:_##* *c_##*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 concatenated, separated by spaces. Each space in a name
847 is preceded with a backslash.
Bram Moolenaard812df62008-11-09 12:46:09 +0000848 #<n (where n is a number > 0) is replaced with old *:_#<* *c_#<*
849 file name n. See |:oldfiles| or |v:oldfiles| to get the
850 number. *E809*
Bram Moolenaardb84e452010-08-15 13:50:43 +0200851 {only when compiled with the |+eval| and |+viminfo| features}
Bram Moolenaard812df62008-11-09 12:46:09 +0000852
853Note that these, except "#<n", give the file name as it was typed. If an
854absolute path is needed (when using the file name from a different directory),
855you need to add ":p". See |filename-modifiers|.
856
857The "#<n" item returns an absolute path, but it will start with "~/" for files
858below your home directory.
859
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860Note that backslashes are inserted before spaces, so that the command will
861correctly interpret the file name. But this doesn't happen for shell
Bram Moolenaard812df62008-11-09 12:46:09 +0000862commands. For those you probably have to use quotes (this fails for files
863that contain a quote and wildcards): >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 :!ls "%"
865 :r !spell "%"
866
867To avoid the special meaning of '%' and '#' insert a backslash before it.
868Detail: The special meaning is always escaped when there is a backslash before
869it, no matter how many backslashes.
870 you type: result ~
871 # alternate.file
872 \# #
873 \\# \#
Bram Moolenaarf9132812015-07-21 19:19:13 +0200874Also see |`=|.
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +0200875
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200876 *:<cword>* *<cword>* *:<cWORD>* *<cWORD>*
877 *:<cexpr>* *<cexpr>* *:<cfile>* *<cfile>*
878 *:<afile>* *<afile>* *:<abuf>* *<abuf>*
879 *:<amatch>* *<amatch>*
880 *:<sfile>* *<sfile>* *:<slnum>* *<slnum>*
881 *:<sflnum>* *<sflnum>* *E499* *E500*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882Note: these are typed literally, they are not special keys!
883 <cword> is replaced with the word under the cursor (like |star|)
884 <cWORD> is replaced with the WORD under the cursor (see |WORD|)
Bram Moolenaar65f08472017-09-10 18:16:20 +0200885 <cexpr> is replaced with the word under the cursor, including more
886 to form a C expression. E.g., when the cursor is on "arg"
887 of "ptr->arg" then the result is "ptr->arg"; when the
888 cursor is on "]" of "list[idx]" then the result is
889 "list[idx]". This is used for |v:beval_text|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 <cfile> is replaced with the path name under the cursor (like what
891 |gf| uses)
Bram Moolenaar81af9252010-12-10 20:35:50 +0100892 <afile> When executing autocommands, is replaced with the file name
Bram Moolenaar01164a62017-11-02 22:58:42 +0100893 of the buffer being manipulated, or the file for a read or
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200894 write. *E495*
Bram Moolenaar81af9252010-12-10 20:35:50 +0100895 <abuf> When executing autocommands, is replaced with the currently
Bram Moolenaara2031822006-03-07 22:29:51 +0000896 effective buffer number (for ":r file" and ":so file" it is
897 the current buffer, the file being read/sourced is not in a
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200898 buffer). *E496*
Bram Moolenaar81af9252010-12-10 20:35:50 +0100899 <amatch> When executing autocommands, is replaced with the match for
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200900 which this autocommand was executed. *E497*
901 It differs from <afile> only when the file name isn't used
902 to match with (for FileType, Syntax and SpellFileMissing
903 events).
Bram Moolenaar81af9252010-12-10 20:35:50 +0100904 <sfile> When executing a ":source" command, is replaced with the
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +0200905 file name of the sourced file. *E498*
Bram Moolenaarca635012015-09-25 20:34:21 +0200906 When executing a function, is replaced with:
907 "function {function-name}[{lnum}]"
908 function call nesting is indicated like this:
909 "function {function-name1}[{lnum}]..{function-name2}[{lnum}]"
910 Note that filename-modifiers are useless when <sfile> is
911 used inside a function.
Bram Moolenaar81af9252010-12-10 20:35:50 +0100912 <slnum> When executing a ":source" command, is replaced with the
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200913 line number. *E842*
Bram Moolenaar81af9252010-12-10 20:35:50 +0100914 When executing a function it's the line number relative to
915 the start of the function.
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200916 <sflnum> When executing a script, is replaced with the line number.
917 It differs from <slnum> in that <sflnum> is replaced with
918 the script line number in any situation. *E961*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919
920 *filename-modifiers*
Bram Moolenaar251835e2014-02-24 02:51:51 +0100921*:_%:* *::8* *::p* *::.* *::~* *::h* *::t* *::r* *::e* *::s* *::gs* *::S*
922 *%:8* *%:p* *%:.* *%:~* *%:h* *%:t* *%:r* *%:e* *%:s* *%:gs* *%:S*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923The file name modifiers can be used after "%", "#", "#n", "<cfile>", "<sfile>",
924"<afile>" or "<abuf>". They are also used with the |fnamemodify()| function.
Bram Moolenaar30e9b3c2019-09-07 16:24:12 +0200925
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926These modifiers can be given, in this order:
927 :p Make file name a full path. Must be the first modifier. Also
928 changes "~/" (and "~user/" for Unix and VMS) to the path for
929 the home directory. If the name is a directory a path
930 separator is added at the end. For a file name that does not
931 exist and does not have an absolute path the result is
Bram Moolenaar30b65812012-07-12 22:01:11 +0200932 unpredictable. On MS-Windows an 8.3 filename is expanded to
933 the long name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 :8 Converts the path to 8.3 short format (currently only on
Bram Moolenaar30b65812012-07-12 22:01:11 +0200935 MS-Windows). Will act on as much of a path that is an
936 existing path.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 :~ Reduce file name to be relative to the home directory, if
938 possible. File name is unmodified if it is not below the home
939 directory.
940 :. Reduce file name to be relative to current directory, if
941 possible. File name is unmodified if it is not below the
Bram Moolenaard816cd92020-02-04 22:23:09 +0100942 current directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 For maximum shortness, use ":~:.".
944 :h Head of the file name (the last component and any separators
945 removed). Cannot be used with :e, :r or :t.
946 Can be repeated to remove several components at the end.
947 When the file name ends in a path separator, only the path
948 separator is removed. Thus ":p:h" on a directory name results
949 on the directory name itself (without trailing slash).
950 When the file name is an absolute path (starts with "/" for
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100951 Unix; "x:\" for Win32; "drive:" for Amiga), that part is not
Bram Moolenaar6f345a12019-12-17 21:27:18 +0100952 removed. When there is no head (path is relative to current
953 directory) the result is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 :t Tail of the file name (last component of the name). Must
955 precede any :r or :e.
956 :r Root of the file name (the last extension removed). When
957 there is only an extension (file name that starts with '.',
958 e.g., ".vimrc"), it is not removed. Can be repeated to remove
959 several extensions (last one first).
960 :e Extension of the file name. Only makes sense when used alone.
961 When there is no extension the result is empty.
962 When there is only an extension (file name that starts with
963 '.'), the result is empty. Can be repeated to include more
964 extensions. If there are not enough extensions (but at least
965 one) as much as possible are included.
966 :s?pat?sub?
967 Substitute the first occurrence of "pat" with "sub". This
968 works like the |:s| command. "pat" is a regular expression.
969 Any character can be used for '?', but it must not occur in
970 "pat" or "sub".
971 After this, the previous modifiers can be used again. For
972 example ":p", to make a full path after the substitution.
973 :gs?pat?sub?
Bram Moolenaaradc21822011-04-01 18:03:16 +0200974 Substitute all occurrences of "pat" with "sub". Otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 this works like ":s".
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +0200976 :S Escape special characters for use with a shell command (see
Bram Moolenaar251835e2014-02-24 02:51:51 +0100977 |shellescape()|). Must be the last one. Examples: >
978 :!dir <cfile>:S
979 :call system('chmod +w -- ' . expand('%:S'))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980
981Examples, when the file name is "src/version.c", current dir
982"/home/mool/vim": >
983 :p /home/mool/vim/src/version.c
984 :p:. src/version.c
985 :p:~ ~/vim/src/version.c
986 :h src
987 :p:h /home/mool/vim/src
988 :p:h:h /home/mool/vim
989 :t version.c
990 :p:t version.c
991 :r src/version
992 :p:r /home/mool/vim/src/version
993 :t:r version
994 :e c
995 :s?version?main? src/main.c
996 :s?version?main?:p /home/mool/vim/src/main.c
997 :p:gs?/?\\? \home\mool\vim\src\version.c
998
999Examples, when the file name is "src/version.c.gz": >
1000 :p /home/mool/vim/src/version.c.gz
1001 :e gz
1002 :e:e c.gz
1003 :e:e:e c.gz
1004 :e:e:r c
1005 :r src/version.c
1006 :r:e c
1007 :r:r src/version
1008 :r:r:r src/version
1009<
1010 *extension-removal* *:_%<*
1011If a "<" is appended to "%", "#", "#n" or "CTRL-V p" the extension of the file
1012name is removed (everything after and including the last '.' in the file
1013name). This is included for backwards compatibility with version 3.0, the
1014":r" form is preferred. Examples: >
1015
1016 % current file name
1017 %< current file name without extension
1018 # alternate file name for current window
1019 #< idem, without extension
1020 #31 alternate file number 31
1021 #31< idem, without extension
1022 <cword> word under the cursor
1023 <cWORD> WORD under the cursor (see |WORD|)
1024 <cfile> path name under the cursor
1025 <cfile>< idem, without extension
1026
1027Note: Where a file name is expected wildcards expansion is done. On Unix the
1028shell is used for this, unless it can be done internally (for speed).
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +02001029Unless in |restricted-mode|, backticks work also, like in >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 :n `echo *.c`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031But expansion is only done if there are any wildcards before expanding the
1032'%', '#', etc.. This avoids expanding wildcards inside a file name. If you
1033want to expand the result of <cfile>, add a wildcard character to it.
1034Examples: (alternate file name is "?readme?")
1035 command expands to ~
1036 :e # :e ?readme?
1037 :e `ls #` :e {files matching "?readme?"}
1038 :e #.* :e {files matching "?readme?.*"}
1039 :cd <cfile> :cd {file name under cursor}
1040 :cd <cfile>* :cd {file name under cursor plus "*" and then expanded}
Bram Moolenaarf9132812015-07-21 19:19:13 +02001041Also see |`=|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042
1043When the expanded argument contains a "!" and it is used for a shell command
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001044(":!cmd", ":r !cmd" or ":w !cmd"), the "!" is escaped with a backslash to
1045avoid it being expanded into a previously used command. When the 'shell'
1046option contains "sh", this is done twice, to avoid the shell trying to expand
1047the "!".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
1049 *filename-backslash*
Bram Moolenaar6f345a12019-12-17 21:27:18 +01001050For filesystems that use a backslash as directory separator (MS-Windows), it's
1051a bit difficult to recognize a backslash that is used to escape the special
1052meaning of the next character. The general rule is: If the backslash is
1053followed by a normal file name character, it does not have a special meaning.
1054Therefore "\file\foo" is a valid file name, you don't have to type the
1055backslash twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
1057An exception is the '$' sign. It is a valid character in a file name. But
1058to avoid a file name like "$home" to be interpreted as an environment variable,
1059it needs to be preceded by a backslash. Therefore you need to use "/\$home"
1060for the file "$home" in the root directory. A few examples:
1061
1062 FILE NAME INTERPRETED AS ~
1063 $home expanded to value of environment var $home
1064 \$home file "$home" in current directory
1065 /\$home file "$home" in root directory
1066 \\$home file "\\", followed by expanded $home
Bram Moolenaarfc39ecf2015-08-11 20:34:49 +02001067
Bram Moolenaarf9132812015-07-21 19:19:13 +02001068Also see |`=|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069
1070==============================================================================
Bram Moolenaarac7bd632013-03-19 11:35:58 +010010717. Command-line window *cmdline-window* *cmdwin*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001072 *command-line-window*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073In the command-line window the command line can be edited just like editing
1074text in any window. It is a special kind of window, because you cannot leave
1075it in a normal way.
Bram Moolenaar54775062019-07-31 21:07:14 +02001076{not available when compiled without the |+cmdline_hist| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
1078
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001079OPEN *c_CTRL-F* *q:* *q/* *q?*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080
1081There are two ways to open the command-line window:
10821. From Command-line mode, use the key specified with the 'cedit' option.
1083 The default is CTRL-F when 'compatible' is not set.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010010842. From Normal mode, use the "q:", "q/" or "q?" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 This starts editing an Ex command-line ("q:") or search string ("q/" or
1086 "q?"). Note that this is not possible while recording is in progress (the
1087 "q" stops recording then).
1088
1089When the window opens it is filled with the command-line history. The last
1090line contains the command as typed so far. The left column will show a
1091character that indicates the type of command-line being edited, see
1092|cmdwin-char|.
1093
1094Vim will be in Normal mode when the editor is opened, except when 'insertmode'
1095is set.
1096
1097The height of the window is specified with 'cmdwinheight' (or smaller if there
1098is no room). The window is always full width and is positioned just above the
1099command-line.
1100
1101
1102EDIT
1103
1104You can now use commands to move around and edit the text in the window. Both
1105in Normal mode and Insert mode.
1106
1107It is possible to use ":", "/" and other commands that use the command-line,
1108but it's not possible to open another command-line window then. There is no
1109nesting.
1110 *E11*
1111The command-line window is not a normal window. It is not possible to move to
1112another window or edit another buffer. All commands that would do this are
1113disabled in the command-line window. Of course it _is_ possible to execute
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001114any command that you entered in the command-line window. Other text edits are
1115discarded when closing the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116
1117
1118CLOSE *E199*
1119
1120There are several ways to leave the command-line window:
1121
1122<CR> Execute the command-line under the cursor. Works both in
1123 Insert and in Normal mode.
1124CTRL-C Continue in Command-line mode. The command-line under the
1125 cursor is used as the command-line. Works both in Insert and
Bram Moolenaarbc2eada2017-01-02 21:27:47 +01001126 in Normal mode. There is no redraw, thus the window will
1127 remain visible.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128:quit Discard the command line and go back to Normal mode.
Bram Moolenaarbc2eada2017-01-02 21:27:47 +01001129 ":close", ":exit", ":xit" and CTRL-\ CTRL-N also work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130:qall Quit Vim, unless there are changes in some buffer.
1131:qall! Quit Vim, discarding changes to any buffer.
1132
1133Once the command-line window is closed the old window sizes are restored. The
1134executed command applies to the window and buffer where the command-line was
1135started from. This works as if the command-line window was not there, except
1136that there will be an extra screen redraw.
1137The buffer used for the command-line window is deleted. Any changes to lines
1138other than the one that is executed with <CR> are lost.
1139
Bram Moolenaar36fc5352006-03-04 21:49:37 +00001140If you would like to execute the command under the cursor and then have the
1141command-line window open again, you may find this mapping useful: >
1142
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001143 :autocmd CmdwinEnter * map <buffer> <F5> <CR>q:
Bram Moolenaar36fc5352006-03-04 21:49:37 +00001144
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145
1146VARIOUS
1147
1148The command-line window cannot be used:
1149- when there already is a command-line window (no nesting)
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001150- for entering an encryption key or when using inputsecret()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
1152Some options are set when the command-line window is opened:
1153'filetype' "vim", when editing an Ex command-line; this starts Vim syntax
1154 highlighting if it was enabled
1155'rightleft' off
1156'modifiable' on
1157'buftype' "nofile"
1158'swapfile' off
1159
1160It is allowed to write the buffer contents to a file. This is an easy way to
1161save the command-line history and read it back later.
1162
1163If the 'wildchar' option is set to <Tab>, and the command-line window is used
1164for an Ex command, then two mappings will be added to use <Tab> for completion
1165in the command-line window, like this: >
1166 :imap <buffer> <Tab> <C-X><C-V>
1167 :nmap <buffer> <Tab> a<C-X><C-V>
1168Note that hitting <Tab> in Normal mode will do completion on the next
1169character. That way it works at the end of the line.
1170If you don't want these mappings, disable them with: >
1171 au CmdwinEnter [:>] iunmap <Tab>
1172 au CmdwinEnter [:>] nunmap <Tab>
1173You could put these lines in your vimrc file.
1174
1175While in the command-line window you cannot use the mouse to put the cursor in
1176another window, or drag statuslines of other windows. You can drag the
1177statusline of the command-line window itself and the statusline above it.
1178Thus you can resize the command-line window, but not others.
1179
Bram Moolenaarfb539272014-08-22 19:21:47 +02001180The |getcmdwintype()| function returns the type of the command-line being
1181edited as described in |cmdwin-char|.
1182
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
1184AUTOCOMMANDS
1185
Bram Moolenaar96e38a82019-09-09 18:35:33 +02001186Two autocommand events are used: |CmdwinEnter| and |CmdwinLeave|. You can use
1187the Cmdwin events to do settings specifically for the command-line window.
1188Be careful not to cause side effects!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189Example: >
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001190 :au CmdwinEnter : let b:cpt_save = &cpt | set cpt=.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 :au CmdwinLeave : let &cpt = b:cpt_save
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001192This sets 'complete' to use completion in the current window for |i_CTRL-N|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193Another example: >
1194 :au CmdwinEnter [/?] startinsert
1195This will make Vim start in Insert mode in the command-line window.
1196
1197 *cmdwin-char*
1198The character used for the pattern indicates the type of command-line:
1199 : normal Ex command
1200 > debug mode command |debug-mode|
1201 / forward search string
1202 ? backward search string
1203 = expression for "= |expr-register|
1204 @ string for |input()|
1205 - text for |:insert| or |:append|
1206
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001207 vim:tw=78:ts=8:noet:ft=help:norl: