blob: a11e166c382c482ddeeb0b6d23d2f831cd985573 [file] [log] [blame]
Bram Moolenaarf1dcd142022-12-31 15:30:45 +00001*various.txt* For Vim version 9.0. Last change: 2022 Dec 13
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Various commands *various*
8
91. Various commands |various-cmds|
Bram Moolenaar91604412010-06-03 20:25:18 +0200102. Using Vim like less or more |less|
Bram Moolenaar071d4272004-06-13 20:20:40 +000011
12==============================================================================
131. Various commands *various-cmds*
14
15 *CTRL-L*
Bram Moolenaar30abd282005-06-22 22:35:10 +000016CTRL-L Clear and redraw the screen. The redraw may happen
17 later, after processing typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19 *:redr* *:redraw*
20:redr[aw][!] Redraw the screen right now. When ! is included it is
21 cleared first.
22 Useful to update the screen halfway executing a script
23 or function. Also when halfway a mapping and
24 'lazyredraw' is set.
25
26 *:redraws* *:redrawstatus*
27:redraws[tatus][!] Redraw the status line of the current window. When !
28 is included all status lines are redrawn.
29 Useful to update the status line(s) when 'statusline'
30 includes an item that doesn't cause automatic
31 updating.
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +010032 If the command line is being edited the redraw is
33 postponed until later.
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
Bram Moolenaare12bab32019-01-08 22:02:56 +010035 *:redrawt* *:redrawtabline*
36:redrawt[abline] Redraw the tabline. Useful to update the tabline when
37 'tabline' includes an item that doesn't trigger
38 automatic updating.
39
Bram Moolenaar071d4272004-06-13 20:20:40 +000040 *N<Del>*
41<Del> When entering a number: Remove the last digit.
42 Note: if you like to use <BS> for this, add this
43 mapping to your .vimrc: >
44 :map CTRL-V <BS> CTRL-V <Del>
45< See |:fixdel| if your <Del> key does not do what you
46 want.
47
48:as[cii] or *ga* *:as* *:ascii*
49ga Print the ascii value of the character under the
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010050 cursor in decimal, hexadecimal and octal.
51 Mnemonic: Get Ascii value.
52
53 For example, when the cursor is on a 'R':
Bram Moolenaar071d4272004-06-13 20:20:40 +000054 <R> 82, Hex 52, Octal 122 ~
55 When the character is a non-standard ASCII character,
56 but printable according to the 'isprint' option, the
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010057 non-printable version is also given.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010058
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010059 When the character is larger than 127, the <M-x> form
60 is also printed. For example:
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 <~A> <M-^A> 129, Hex 81, Octal 201 ~
62 <p> <|~> <M-~> 254, Hex fe, Octal 376 ~
63 (where <p> is a special character)
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010064
Bram Moolenaar071d4272004-06-13 20:20:40 +000065 The <Nul> character in a file is stored internally as
66 <NL>, but it will be shown as:
67 <^@> 0, Hex 00, Octal 000 ~
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010068
Bram Moolenaar362e1a32006-03-06 23:29:24 +000069 If the character has composing characters these are
70 also shown. The value of 'maxcombine' doesn't matter.
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010071
72 If the character can be inserted as a digraph, also
73 output the two characters that can be used to create
74 the character:
75 <ö> 246, Hex 00f6, Oct 366, Digr o: ~
76 This shows you can type CTRL-K o : to insert ö.
77
Bram Moolenaar071d4272004-06-13 20:20:40 +000078 *g8*
79g8 Print the hex values of the bytes used in the
80 character under the cursor, assuming it is in |UTF-8|
Bram Moolenaar362e1a32006-03-06 23:29:24 +000081 encoding. This also shows composing characters. The
82 value of 'maxcombine' doesn't matter.
83 Example of a character with two composing characters:
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 e0 b8 81 + e0 b8 b9 + e0 b9 89 ~
Bram Moolenaarca003e12006-03-17 23:19:38 +000085
86 *8g8*
878g8 Find an illegal UTF-8 byte sequence at or after the
88 cursor. This works in two situations:
89 1. when 'encoding' is any 8-bit encoding
90 2. when 'encoding' is "utf-8" and 'fileencoding' is
91 any 8-bit encoding
92 Thus it can be used when editing a file that was
93 supposed to be UTF-8 but was read as if it is an 8-bit
94 encoding because it contains illegal bytes.
95 Does not wrap around the end of the file.
96 Note that when the cursor is on an illegal byte or the
Bram Moolenaar207f0092020-08-30 17:20:20 +020097 cursor is halfway a multibyte character the command
Bram Moolenaarca003e12006-03-17 23:19:38 +000098 won't move the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000100 *:p* *:pr* *:print* *E749*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000101:[range]p[rint] [flags]
102 Print [range] lines (default current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 Note: If you are looking for a way to print your text
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000104 on paper see |:hardcopy|. In the GUI you can use the
105 File.Print menu entry.
106 See |ex-flags| for [flags].
Bram Moolenaar818078d2016-08-27 21:58:42 +0200107 The |:filter| command can be used to only show lines
108 matching a pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000110:[range]p[rint] {count} [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 Print {count} lines, starting with [range] (default
112 current line |cmdline-ranges|).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000113 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114
115 *:P* *:Print*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000116:[range]P[rint] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 Just as ":print". Was apparently added to Vi for
118 people that keep the shift key pressed too long...
Bram Moolenaar1588bc82022-03-08 21:35:07 +0000119 This command is not supported in |Vim9| script.
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100120 Note: A user command can overrule this command.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000121 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
123 *:l* *:list*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000124:[range]l[ist] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 Same as :print, but display unprintable characters
Bram Moolenaarf9d5ca12010-08-01 16:13:51 +0200126 with '^' and put $ after the line. This can be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100127 further changed with the 'listchars' option.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000128 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129
130 *:nu* *:number*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000131:[range]nu[mber] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 Same as :print, but precede each line with its line
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000133 number. (See also 'highlight' and 'numberwidth'
134 option).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000135 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137 *:#*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000138:[range]# [count] [flags]
139 synonym for :number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000141 *:#!*
142:#!{anything} Ignored, so that you can start a Vim script with: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000143 #!vim -S
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000144 echo "this is a Vim script"
145 quit
146<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 *:z* *E144*
Bram Moolenaar4466ad62020-11-21 13:16:30 +0100148:[range]z[+-^.=][count] Display several lines of text surrounding the line
149 specified with [range], or around the current line
150 if there is no [range].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
Bram Moolenaar4466ad62020-11-21 13:16:30 +0100152 If there is a [count], that's how many lines you'll
153 see; if there is no [count] and only one window then
154 twice the value of the 'scroll' option is used,
155 otherwise the current window height minus 3 is used.
156 This is the value of "scr" in the table below.
157
158 If there is a [count] the 'window' option is set to
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100159 its value.
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 :z can be used either alone or followed by any of
Bram Moolenaar207f0092020-08-30 17:20:20 +0200162 several marks. These have the following effect:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163
Bram Moolenaar662db672011-03-22 14:05:35 +0100164 mark first line last line new cursor line ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 ---- ---------- --------- ------------
166 + current line 1 scr forward 1 scr forward
167 - 1 scr back current line current line
168 ^ 2 scr back 1 scr back 1 scr back
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000169 . 1/2 scr back 1/2 scr fwd 1/2 scr fwd
170 = 1/2 scr back 1/2 scr fwd current line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171
172 Specifying no mark at all is the same as "+".
173 If the mark is "=", a line of dashes is printed
174 around the current line.
175
Bram Moolenaar6c391a72021-09-09 21:55:11 +0200176 *:z!*
Dominique Pelle7f2dd1e2021-09-04 13:44:01 +0200177:[range]z![+-^.=][count]
Bram Moolenaar22863042021-10-16 15:23:36 +0100178 Like ":z", but when [count] is not specified, it
Dominique Pelle7f2dd1e2021-09-04 13:44:01 +0200179 defaults to the Vim window height minus one.
180
181:[range]z[!]#[+-^.=][count] *:z#*
182 Like ":z" or ":z!", but number the lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183
184 *:=*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000185:= [flags] Print the last line number.
186 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000188:{range}= [flags] Prints the last line number in {range}. For example,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 this prints the current line number: >
190 :.=
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000191< See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192
193:norm[al][!] {commands} *:norm* *:normal*
194 Execute Normal mode commands {commands}. This makes
195 it possible to execute Normal mode commands typed on
Bram Moolenaar4a748032010-09-30 21:47:56 +0200196 the command-line. {commands} are executed like they
197 are typed. For undo all commands are undone together.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000198 Execution stops when an error is encountered.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100199
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200 If the [!] is given, mappings will not be used.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100201 Without it, when this command is called from a
202 non-remappable mapping (|:noremap|), the argument can
203 be mapped anyway.
204
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 {commands} should be a complete command. If
206 {commands} does not finish a command, the last one
207 will be aborted as if <Esc> or <C-C> was typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 This implies that an insert command must be completed
209 (to start Insert mode, see |:startinsert|). A ":"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000210 command must be completed as well. And you can't use
211 "Q" or "gQ" to start Ex mode.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100212
213 The display is not updated while ":normal" is busy.
214
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100215 {commands} cannot start with a space. Put a count of
216 1 (one) before it, "1 " is one space.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100217
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 The 'insertmode' option is ignored for {commands}.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100219
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 This command cannot be followed by another command,
221 since any '|' is considered part of the command.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 This command can be used recursively, but the depth is
224 limited by 'maxmapdepth'.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100225
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 An alternative is to use |:execute|, which uses an
227 expression as argument. This allows the use of
Bram Moolenaar46f9d492010-06-12 20:18:19 +0200228 printable characters to represent special characters.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100229
Bram Moolenaar46f9d492010-06-12 20:18:19 +0200230 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 :exe "normal \<c-w>\<c-w>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232
233:{range}norm[al][!] {commands} *:normal-range*
234 Execute Normal mode commands {commands} for each line
235 in the {range}. Before executing the {commands}, the
236 cursor is positioned in the first column of the range,
237 for each line. Otherwise it's the same as the
238 ":normal" command without a range.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
240 *:sh* *:shell* *E371*
241:sh[ell] This command starts a shell. When the shell exits
242 (after the "exit" command) you return to Vim. The
243 name for the shell command comes from 'shell' option.
244 *E360*
245 Note: This doesn't work when Vim on the Amiga was
246 started in QuickFix mode from a compiler, because the
247 compiler will have set stdin to a non-interactive
248 mode.
249
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000250 *:!cmd* *:!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251:!{cmd} Execute {cmd} with the shell. See also the 'shell'
Bram Moolenaar6ebe4f92022-10-28 20:47:54 +0100252 and 'shelltype' option.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000253 *E34*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 Any '!' in {cmd} is replaced with the previous
255 external command (see also 'cpoptions'). But not when
256 there is a backslash before the '!', then that
257 backslash is removed. Example: ":!ls" followed by
258 ":!echo ! \! \\!" executes "echo ls ! \!".
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200259
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000260 A '|' in {cmd} is passed to the shell, you cannot use
261 it to append a Vim command. See |:bar|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200262
263 If {cmd} contains "%" it is expanded to the current
Bram Moolenaaracc22402020-06-07 21:07:18 +0200264 file name, "#" is expanded to the alternate file name.
265 Special characters in the file name are not escaped,
266 use quotes to avoid their special meaning: >
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200267 :!ls "%"
Bram Moolenaaracc22402020-06-07 21:07:18 +0200268< If the file name contains a "$" then single quotes
269 might work better, but this only works if the file
270 name does not contain a single quote: >
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200271 :!ls '%'
272< This should always work, but it's more typing: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000273 :exe "!ls " .. shellescape(expand("%"))
Bram Moolenaaracc22402020-06-07 21:07:18 +0200274< To get a literal "%" or "#" prepend it with a
275 backslash. For example, to list all files starting
276 with "%": >
277 :!ls \%*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200278<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 A newline character ends {cmd}, what follows is
280 interpreted as a following ":" command. However, if
281 there is a backslash before the newline it is removed
282 and {cmd} continues. It doesn't matter how many
283 backslashes are before the newline, only one is
284 removed.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 On Unix the command normally runs in a non-interactive
287 shell. If you want an interactive shell to be used
288 (to use aliases) set 'shellcmdflag' to "-ic".
289 For Win32 also see |:!start|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200290
Bram Moolenaare968e362014-05-13 20:23:24 +0200291 After the command has been executed, the timestamp and
292 size of the current file is checked |timestamp|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200293
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 Vim redraws the screen after the command is finished,
295 because it may have printed any text. This requires a
296 hit-enter prompt, so that you can read any messages.
297 To avoid this use: >
298 :silent !{cmd}
299< The screen is not redrawn then, thus you have to use
300 CTRL-L or ":redraw!" if the command did display
Bram Moolenaar76db9e02022-11-09 21:21:04 +0000301 something. However, this depends on what the |t_ti|
302 and |t_te| termcap entries are set to.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 Also see |shell-window|.
304
305 *:!!*
306:!! Repeat last ":!{cmd}".
307
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200308 *:ve* *:ver* *:version*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309:ve[rsion] Print the version number of the editor. If the
310 compiler used understands "__DATE__" the compilation
311 date is mentioned. Otherwise a fixed release-date is
312 shown.
313 The following lines contain information about which
314 features were enabled when Vim was compiled. When
315 there is a preceding '+', the feature is included,
316 when there is a '-' it is excluded. To change this,
317 you have to edit feature.h and recompile Vim.
318 To check for this in an expression, see |has()|.
319 Here is an overview of the features.
320 The first column shows the smallest version in which
321 they are included:
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100322 T tiny (always)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 S small
324 N normal
325 B big
326 H huge
327 m manually enabled or depends on other features
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100328 - never, feature was removed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 (none) system dependent
330 Thus if a feature is marked with "N", it is included
331 in the normal, big and huge versions of Vim.
332
333 *+feature-list*
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200334 *+acl* |ACL| support included
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 *+ARP* Amiga only: ARP support included
Martin Tournoij25f3a142022-10-08 19:26:41 +0100336H *+arabic* |Arabic| language support
337N *+autochdir* support 'autochdir' option
Bram Moolenaarfd999452022-08-24 18:30:14 +0100338T *+autocmd* |:autocmd|, automatic commands. Always enabled since
339 8.0.1564
Bram Moolenaare42a6d22017-11-12 19:21:51 +0100340H *+autoservername* Automatically enable |clientserver|
Bram Moolenaara2a80162017-11-21 23:09:50 +0100341m *+balloon_eval* |balloon-eval| support in the GUI. Included when
342 compiling with supported GUI (Motif, GTK, GUI) and
343 either Netbeans/Sun Workshop integration or |+eval|
344 feature.
345H *+balloon_eval_term* |balloon-eval| support in the terminal,
346 'balloonevalterm'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347N *+browse* |:browse| command
Bram Moolenaar2ee347f2022-08-26 17:53:44 +0100348T *++builtin_terms* maximal terminals builtin |builtin-terms| Always
349 enabled since 9.0.0280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350N *+byte_offset* support for 'o' flag in 'statusline' option, "go"
351 and ":goto" commands.
Bram Moolenaar298b4402016-01-28 22:38:53 +0100352m *+channel* inter process communication |channel|
Martin Tournoij7904fa42022-10-04 16:28:45 +0100353T *+cindent* |'cindent'|, C indenting; Always enabled
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354N *+clientserver* Unix and Win32: Remote invocation |clientserver|
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200355 *+clipboard* |clipboard| support compiled-in
356 *+clipboard_working* |clipboard| support compiled-in and working
Bram Moolenaar06fe74a2019-08-31 16:20:32 +0200357T *+cmdline_compl* command line completion |cmdline-completion|
Bram Moolenaar85388672021-01-31 17:03:52 +0100358T *+cmdline_hist* command line history |cmdline-history|
Martin Tournoijba43e762022-10-13 22:12:15 +0100359T *+cmdline_info* |'showcmd'| and |'ruler'|; Always enabled since
360 9.0.0747
Martin Tournoij7904fa42022-10-04 16:28:45 +0100361T *+cmdwin* |cmdline-window| support; Always enabled since 9.0.0657
Bram Moolenaar8c96af92019-09-28 19:05:57 +0200362T *+comments* |'comments'| support
Martin Tournoij25f3a142022-10-08 19:26:41 +0100363N *+conceal* "conceal" support, see |conceal| |:syn-conceal| etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364N *+cryptv* encryption support |encryption|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100365H *+cscope* |cscope| support
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100366T *+cursorbind* |'cursorbind'| support
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000367m *+cursorshape* |termcap-cursor-shape| support
368m *+debug* Compiled for debugging.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369N *+dialog_gui* Support for |:confirm| with GUI dialog.
370N *+dialog_con* Support for |:confirm| with console dialog.
371N *+dialog_con_gui* Support for |:confirm| with GUI and console dialog.
372N *+diff* |vimdiff| and 'diff'
373N *+digraphs* |digraphs| *E196*
Bram Moolenaar43cb6262018-03-14 21:39:02 +0100374 *+directx* Win32 GUI only: DirectX and |'renderoptions'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 *+dnd* Support for DnD into the "~ register |quote_~|.
Martin Tournoij25f3a142022-10-08 19:26:41 +0100376H *+emacs_tags* |emacs-tags| files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377N *+eval* expression evaluation |eval.txt|
Bram Moolenaar47003982021-12-05 21:54:04 +0000378T *+ex_extra* always on now, used to be for Vim's extra Ex commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379N *+extra_search* |'hlsearch'| and |'incsearch'| options.
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100380- *+farsi* Removed: |farsi| language
Bram Moolenaar7dd54322022-08-26 18:01:12 +0100381T *+file_in_path* |gf|, |CTRL-W_f| and |<cfile>| Always enabled since
382 9.0.265
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383N *+find_in_path* include file searches: |[I|, |:isearch|,
384 |CTRL-W_CTRL-I|, |:checkpath|, etc.
385N *+folding* |folding|
386 *+footer* |gui-footer|
387 *+fork* Unix only: |fork| shell commands
Bram Moolenaar73e28dc2022-09-17 21:08:33 +0100388T *+float* Floating point support Always enabled since 9.0.0491
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389N *+gettext* message translations |multi-lang|
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100390- *+GUI_Athena* Unix only: Athena |GUI|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 *+GUI_neXtaw* Unix only: neXtaw |GUI|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 *+GUI_GTK* Unix only: GTK+ |GUI|
393 *+GUI_Motif* Unix only: Motif |GUI|
394 *+GUI_Photon* QNX only: Photon |GUI|
395m *+hangul_input* Hangul input support |hangul|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000396 *+iconv* Compiled with the |iconv()| function
397 *+iconv/dyn* Likewise |iconv-dynamic| |/dyn|
Bram Moolenaar06fe74a2019-08-31 16:20:32 +0200398T *+insert_expand* |insert_expand| Insert mode completion
Bram Moolenaarbfe13cc2020-04-12 17:53:12 +0200399m *+ipv6* Support for IPv6 networking |channel|
Bram Moolenaar38a55632016-02-15 22:07:32 +0100400m *+job* starting and stopping jobs |job|
Bram Moolenaar739f13a2021-12-13 13:12:53 +0000401T *+jumplist* |jumplist|; Always enabled since 8.2.3795
Martin Tournoij25f3a142022-10-08 19:26:41 +0100402H *+keymap* |'keymap'|
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200403N *+lambda* |lambda| and |closure|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100404H *+langmap* |'langmap'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405N *+libcall* |libcall()|
406N *+linebreak* |'linebreak'|, |'breakat'| and |'showbreak'|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100407T *+lispindent* |'lisp'|
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200408T *+listcmds* Vim commands for the list of buffers |buffer-hidden|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 and argument list |:argdelete|
Bram Moolenaar088e8e32019-08-08 22:15:18 +0200410T *+localmap* Support for mappings local to a buffer |:map-local|
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200411m *+lua* |Lua| interface
412m *+lua/dyn* |Lua| interface |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413N *+menu* |:menu|
414N *+mksession* |:mksession|
Bram Moolenaar30e9b3c2019-09-07 16:24:12 +0200415T *+modify_fname* |filename-modifiers|
Bram Moolenaar96f45c02019-10-26 19:53:45 +0200416T *+mouse* Mouse handling |mouse-using|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417N *+mouseshape* |'mouseshape'|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100418N *+mouse_dec* Unix only: Dec terminal mouse handling |dec-mouse|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419N *+mouse_gpm* Unix only: Linux console mouse handling |gpm-mouse|
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100420m *+mouse_gpm/dyn* Same as |+mouse_gpm| with optional library dependency
421 |/dyn|
Bram Moolenaar13600302014-05-22 18:26:40 +0200422N *+mouse_jsbterm* JSB mouse handling |jsbterm-mouse|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100423N *+mouse_netterm* Unix only: netterm mouse handling |netterm-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100424N *+mouse_pterm* QNX only: pterm mouse handling |qnx-terminal|
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000425N *+mouse_sysmouse* Unix only: *BSD console mouse handling |sysmouse|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100426N *+mouse_sgr* Unix only: sgr mouse handling |sgr-mouse|
427N *+mouse_urxvt* Unix only: urxvt mouse handling |urxvt-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100428N *+mouse_xterm* Unix only: xterm mouse handling |xterm-mouse|
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100429T *+multi_byte* Unicode support, 16 and 32 bit characters |multibyte|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 *+multi_byte_ime* Win32 input method for multibyte chars |multibyte-ime|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100431N *+multi_lang* non-English language support |multi-lang|
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000432m *+mzscheme* Mzscheme interface |mzscheme|
Bram Moolenaar4770d092006-01-12 23:22:24 +0000433m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434m *+netbeans_intg* |netbeans|
Bram Moolenaar47003982021-12-05 21:54:04 +0000435T *+num64* 64-bit Number support |Number|
Bram Moolenaara2baa732022-02-04 16:09:54 +0000436 Always enabled since 8.2.0271, use v:numbersize to
Bram Moolenaarf9706e92020-02-22 14:27:04 +0100437 check the actual size of a Number.
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100438m *+ole* Win32 GUI only: |ole-interface|
Bram Moolenaar91c49372016-05-08 09:50:29 +0200439N *+packages* Loading |packages|
Bram Moolenaar2bd9dbc2022-08-25 18:12:06 +0100440T *+path_extra* Up/downwards search in 'path' and 'tags' Always
441 enabled since 9.0.0270
Bram Moolenaara5792f52005-11-23 21:25:05 +0000442m *+perl* Perl interface |perl|
443m *+perl/dyn* Perl interface |perl-dynamic| |/dyn|
Bram Moolenaar7fc0c062010-08-10 21:43:35 +0200444N *+persistent_undo* Persistent undo |undo-persistence|
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100445N *+popupwin* Popup windows |popup-window|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100446 *+postscript* |:hardcopy| writes a PostScript file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447N *+printer* |:hardcopy| command
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000448H *+profile* |:profile| command
Bram Moolenaar60aad972010-07-21 20:36:22 +0200449m *+python* Python 2 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100450m *+python/dyn* Python 2 interface |python-dynamic| |/dyn|
Bram Moolenaar60aad972010-07-21 20:36:22 +0200451m *+python3* Python 3 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100452m *+python3/dyn* Python 3 interface |python-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453N *+quickfix* |:make| and |quickfix| commands
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000454N *+reltime* |reltime()| function, 'hlsearch'/'incsearch' timeout,
455 'redrawtime' option
Martin Tournoij25f3a142022-10-08 19:26:41 +0100456H *+rightleft* Right to left typing |'rightleft'|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000457m *+ruby* Ruby interface |ruby|
458m *+ruby/dyn* Ruby interface |ruby-dynamic| |/dyn|
Bram Moolenaar98ef2332018-03-18 14:44:37 +0100459T *+scrollbind* |'scrollbind'|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100460N *+signs* |:sign|
461T *+smartindent* |'smartindent'|
462H *+sodium* compiled with libsodium for better encryption support
463H *+sound* |sound_playevent()|, |sound_playfile()| functions, etc.
Bram Moolenaar12ee7ff2019-06-10 22:47:40 +0200464N *+spell* spell checking support, see |spell|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100465N *+startuptime* |--startuptime| argument
466N *+statusline* Options 'statusline', 'rulerformat' and special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 formats of 'titlestring' and 'iconstring'
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100468- *+sun_workshop* Removed: |workshop|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469N *+syntax* Syntax highlighting |syntax|
470 *+system()* Unix only: opposite of |+fork|
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200471T *+tag_binary* binary searching in tags file |tag-binary-search|
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100472- *+tag_old_static* Removed; method for static tags |tag-old-static|
473- *+tag_any_white* Removed; was to allow any white space in tags files
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100474m *+tcl* Tcl interface |tcl|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000475m *+tcl/dyn* Tcl interface |tcl-dynamic| |/dyn|
Bram Moolenaar1ccd8ff2017-08-11 19:50:37 +0200476m *+terminal* Support for terminal window |terminal|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 *+terminfo* uses |terminfo| instead of termcap
478N *+termresponse* support for |t_RV| and |v:termresponse|
Martin Tournoij25f3a142022-10-08 19:26:41 +0100479N *+termguicolors* 24-bit color in xterm-compatible terminals support
Bram Moolenaar88774872022-08-16 20:24:29 +0100480T *+textobjects* |text-objects| selection. Always enabled since 9.0.0222.
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100481N *+textprop* |text-properties|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 *+tgetent* non-Unix only: able to use external termcap
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100483N *+timers* the |timer_start()| function
Bram Moolenaar47003982021-12-05 21:54:04 +0000484T *+title* Setting the window 'title' and 'icon'; Always enabled
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485N *+toolbar* |gui-toolbar|
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200486T *+user_commands* User-defined commands. |user-commands|
487 Always enabled since 8.1.1210.
Martin Tournoij25f3a142022-10-08 19:26:41 +0100488H *+vartabs* Variable-width tabstops. |'vartabstop'|
Bram Moolenaar47003982021-12-05 21:54:04 +0000489T *+vertsplit* Vertically split windows |:vsplit|; Always enabled
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200490 since 8.0.1118.
Bram Moolenaara6feb162022-01-02 12:06:33 +0000491T *+vim9script* |Vim9| script
492N *+viminfo* |'viminfo'|
Bram Moolenaar47003982021-12-05 21:54:04 +0000493T *+virtualedit* |'virtualedit'| Always enabled since 8.1.826.
Bram Moolenaar870ba5f2019-01-11 14:37:20 +0100494T *+visual* Visual mode |Visual-mode| Always enabled since 7.4.200.
495T *+visualextra* extra Visual mode commands |blockwise-operators|
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +0200496T *+vreplace* |gR| and |gr|
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +0100497 *+vtp* on MS-Windows console: support for 'termguicolors'
Bram Moolenaar074fbd42022-08-26 16:41:14 +0100498T *+wildignore* |'wildignore'| Always enabled since 9.0.0278
Bram Moolenaarf1dcd142022-12-31 15:30:45 +0000499T *+wildmenu* |'wildmenu'| Always enabled since 9.0.0279
Bram Moolenaar870ba5f2019-01-11 14:37:20 +0100500T *+windows* more than one window; Always enabled since 8.0.1118.
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100501m *+writebackup* |'writebackup'| is default on
502m *+xim* X input method |xim|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 *+xfontset* X fontset support |xfontset|
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200504 *+xpm* pixmap support
Bram Moolenaar9b451252012-08-15 17:43:31 +0200505m *+xpm_w32* Win32 GUI only: pixmap support |w32-xpm-support|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 *+xsmp* XSMP (X session management) support
507 *+xsmp_interact* interactive XSMP (X session management) support
508N *+xterm_clipboard* Unix only: xterm clipboard handling
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100509m *+xterm_save* save and restore xterm screen |xterm-screens|
510N *+X11* Unix only: can restore window title |X11|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511
512 */dyn* *E370* *E448*
513 To some of the features "/dyn" is added when the
514 feature is only available when the related library can
515 be dynamically loaded.
516
517:ve[rsion] {nr} Is now ignored. This was previously used to check the
518 version number of a .vimrc file. It was removed,
519 because you can now use the ":if" command for
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200520 version-dependent behavior.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521
522 *:redi* *:redir*
523:redi[r][!] > {file} Redirect messages to file {file}. The messages which
524 are the output of commands are written to that file,
525 until redirection ends. The messages are also still
526 shown on the screen. When [!] is included, an
527 existing file is overwritten. When [!] is omitted,
528 and {file} exists, this command fails.
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200529
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 Only one ":redir" can be active at a time. Calls to
531 ":redir" will close any active redirection before
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200532 starting redirection to the new target. For recursive
533 use check out |execute()|.
534
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 To stop the messages and commands from being echoed to
536 the screen, put the commands in a function and call it
537 with ":silent call Function()".
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000538 An alternative is to use the 'verbosefile' option,
539 this can be used in combination with ":redir".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540
541:redi[r] >> {file} Redirect messages to file {file}. Append if {file}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200542 already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000544:redi[r] @{a-zA-Z}
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000545:redi[r] @{a-zA-Z}> Redirect messages to register {a-z}. Append to the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 contents of the register if its name is given
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000547 uppercase {A-Z}. The ">" after the register name is
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200548 optional.
549:redi[r] @{a-z}>> Append messages to register {a-z}.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100551:redi[r] @*>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000552:redi[r] @+> Redirect messages to the selection or clipboard. For
553 backward compatibility, the ">" after the register
554 name can be omitted. See |quotestar| and |quoteplus|.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100555:redi[r] @*>>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000556:redi[r] @+>> Append messages to the selection or clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000558:redi[r] @"> Redirect messages to the unnamed register. For
559 backward compatibility, the ">" after the register
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200560 name can be omitted.
561:redi[r] @">> Append messages to the unnamed register.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000562 *E1092*
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000563:redi[r] => {var} Redirect messages to a variable.
564 In legacy script: If the variable doesn't exist, then
565 it is created. If the variable exists, then it is
566 initialized to an empty string. After the redirection
567 starts, if the variable is removed or locked or the
568 variable type is changed, then further command output
Bram Moolenaare1dc76f2022-06-25 18:01:32 +0100569 messages will cause errors. When using a local
570 variable (l:var in a function or s:var in a script)
571 and another `:redir` causes the current one to end,
572 the scope might be different and the assignment fails.
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000573 In Vim9 script: the variable must have been declared
574 as a string.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000575 The variable will remain empty until redirection ends.
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000576 Only string variables can be used.
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200577 To get the output of one command the |execute()|
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200578 function can be used instead of redirection.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000579
580:redi[r] =>> {var} Append messages to an existing variable. Only string
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200581 variables can be used.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000582 *E1185*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200583:redi[r] END End redirecting messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200585 *:filt* *:filter*
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000586:filt[er][!] {pattern} {command}
587:filt[er][!] /{pattern}/ {command}
Bram Moolenaar214641f2017-03-05 17:04:09 +0100588 Restrict the output of {command} to lines matching
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000589 with {pattern}. For example, to list only xml files: >
Bram Moolenaar818078d2016-08-27 21:58:42 +0200590 :filter /\.xml$/ oldfiles
Bram Moolenaar214641f2017-03-05 17:04:09 +0100591< If the [!] is given, restrict the output of {command}
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000592 to lines that do NOT match {pattern}.
Bram Moolenaar214641f2017-03-05 17:04:09 +0100593
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000594 {pattern} is a Vim search pattern. Instead of enclosing
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200595 it in / any non-ID character (see |'isident'|) can be
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000596 used, so long as it does not appear in {pattern}.
597 Without the enclosing character the pattern cannot
598 include the bar character. 'ignorecase' is not used.
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200599
600 The pattern is matched against the relevant part of
601 the output, not necessarily the whole line. Only some
602 commands support filtering, try it out to check if it
Bram Moolenaarf86db782018-10-25 13:31:37 +0200603 works. Some of the commands that support filtering:
Bram Moolenaarad6dc492019-04-27 22:40:08 +0200604 |:#| - filter whole line
605 |:clist| - filter by file name or module name
606 |:command| - filter by command name
607 |:files| - filter by file name
608 |:highlight| - filter by highlight group
609 |:jumps| - filter by file name
610 |:let| - filter by variable name
611 |:list| - filter whole line
612 |:llist| - filter by file name or module name
613 |:marks| - filter by text in the current file,
614 or file name for other files
615 |:oldfiles| - filter by file name
Bram Moolenaar8fc42962019-10-26 17:33:13 +0200616 |:registers| - filter by register contents
617 (does not work multi-line)
Bram Moolenaar0e6adf82021-12-16 14:41:10 +0000618 |:set| - filter by option name
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200619
620 Only normal messages are filtered, error messages are
621 not.
622
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100623 *:sil* *:silent* *:silent!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624:sil[ent][!] {command} Execute {command} silently. Normal messages will not
625 be given or added to the message history.
626 When [!] is added, error messages will also be
627 skipped, and commands and mappings will not be aborted
628 when an error is detected. |v:errmsg| is still set.
629 When [!] is not used, an error message will cause
630 further messages to be displayed normally.
631 Redirection, started with |:redir|, will continue as
632 usual, although there might be small differences.
633 This will allow redirecting the output of a command
634 without seeing it on the screen. Example: >
635 :redir >/tmp/foobar
636 :silent g/Aap/p
637 :redir END
638< To execute a Normal mode command silently, use the
639 |:normal| command. For example, to search for a
640 string without messages: >
641 :silent exe "normal /path\<CR>"
642< ":silent!" is useful to execute a command that may
643 fail, but the failure is to be ignored. Example: >
644 :let v:errmsg = ""
645 :silent! /^begin
646 :if v:errmsg != ""
647 : ... pattern was not found
648< ":silent" will also avoid the hit-enter prompt. When
649 using this for an external command, this may cause the
650 screen to be messed up. Use |CTRL-L| to clean it up
651 then.
652 ":silent menu ..." defines a menu that will not echo a
653 Command-line command. The command will still produce
654 messages though. Use ":silent" in the command itself
655 to avoid that: ":silent menu .... :silent command".
656
Bram Moolenaar8e258a42009-07-09 13:55:43 +0000657 *:uns* *:unsilent*
658:uns[ilent] {command} Execute {command} not silently. Only makes a
659 difference when |:silent| was used to get to this
660 command.
661 Use this for giving a message even when |:silent| was
662 used. In this example |:silent| is used to avoid the
663 message about reading the file and |:unsilent| to be
664 able to list the first line of each file. >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000665 :silent argdo unsilent echo expand('%') .. ": " .. getline(1)
Bram Moolenaar8e258a42009-07-09 13:55:43 +0000666<
667
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 *:verb* *:verbose*
669:[count]verb[ose] {command}
670 Execute {command} with 'verbose' set to [count]. If
Bram Moolenaared203462004-06-16 11:19:22 +0000671 [count] is omitted one is used. ":0verbose" can be
672 used to set 'verbose' to zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 The additional use of ":silent" makes messages
674 generated but not displayed.
675 The combination of ":silent" and ":verbose" can be
676 used to generate messages and check them with
677 |v:statusmsg| and friends. For example: >
678 :let v:statusmsg = ""
679 :silent verbose runtime foobar.vim
680 :if v:statusmsg != ""
681 : " foobar.vim could not be found
682 :endif
683< When concatenating another command, the ":verbose"
684 only applies to the first one: >
685 :4verbose set verbose | set verbose
686< verbose=4 ~
687 verbose=0 ~
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000688 For logging verbose messages in a file use the
689 'verbosefile' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000691 *:verbose-cmd*
692When 'verbose' is non-zero, listing the value of a Vim option or a key map or
Bram Moolenaare344bea2005-09-01 20:46:49 +0000693an abbreviation or a user-defined function or a command or a highlight group
694or an autocommand will also display where it was last defined. If it was
695defined manually then there will be no "Last set" message. When it was
696defined while executing a function, user command or autocommand, the script in
697which it was defined is reported.
Bram Moolenaardb84e452010-08-15 13:50:43 +0200698{not available when compiled without the |+eval| feature}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000699
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 *K*
701K Run a program to lookup the keyword under the
702 cursor. The name of the program is given with the
703 'keywordprg' (kp) option (default is "man"). The
704 keyword is formed of letters, numbers and the
705 characters in 'iskeyword'. The keyword under or
706 right of the cursor is used. The same can be done
707 with the command >
708 :!{program} {keyword}
709< There is an example of a program to use in the tools
Bram Moolenaar214641f2017-03-05 17:04:09 +0100710 directory of Vim. It is called "ref" and does a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 simple spelling check.
712 Special cases:
Bram Moolenaar26852122016-05-24 20:02:38 +0200713 - If 'keywordprg' begins with ":" it is invoked as
714 a Vim Ex command with [count].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 - If 'keywordprg' is empty, the ":help" command is
716 used. It's a good idea to include more characters
717 in 'iskeyword' then, to be able to find more help.
Bram Moolenaar26852122016-05-24 20:02:38 +0200718 - When 'keywordprg' is equal to "man" or starts with
719 ":", a [count] before "K" is inserted after
720 keywordprg and before the keyword. For example,
721 using "2K" while the cursor is on "mkdir", results
722 in: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 !man 2 mkdir
724< - When 'keywordprg' is equal to "man -s", a count
725 before "K" is inserted after the "-s". If there is
726 no count, the "-s" is removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727
728 *v_K*
729{Visual}K Like "K", but use the visually highlighted text for
730 the keyword. Only works when the highlighted text is
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200731 not more than one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733[N]gs *gs* *:sl* *:sleep*
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100734:[N]sl[eep] [N][m] Do nothing for [N] seconds. When [m] is included,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000735 sleep for [N] milliseconds. The count for "gs" always
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 uses seconds. The default is one second. >
737 :sleep "sleep for one second
738 :5sleep "sleep for five seconds
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100739 :sleep 100m "sleep for 100 milliseconds
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 10gs "sleep for ten seconds
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100741< Can be interrupted with CTRL-C (CTRL-Break on
742 MS-Windows). "gs" stands for "goto sleep".
Bram Moolenaar677ee682005-01-27 14:41:15 +0000743 While sleeping the cursor is positioned in the text,
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200744 if at a visible position.
Bram Moolenaar15146672011-10-20 22:22:38 +0200745 Also process the received netbeans messages. {only
746 available when compiled with the |+netbeans_intg|
747 feature}
748
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100749 *:sl!* *:sleep!*
Bram Moolenaar2346a632021-06-13 19:02:49 +0200750:[N]sl[eep]! [N][m] Same as above, but hide the cursor.
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100751
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200752 *:xrestore* *:xr*
753:xr[estore] [display] Reinitializes the connection to the X11 server. Useful
754 after the X server restarts, e.g. when running Vim for
755 long time inside screen/tmux and connecting from
Bram Moolenaar68e65602019-05-26 21:33:31 +0200756 different machines.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100757 [display] should be in the format of the $DISPLAY
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200758 environment variable (e.g. "localhost:10.0")
759 If [display] is omitted, then it reinitializes the
760 connection to the X11 server using the same value as
761 was used for the previous execution of this command.
762 If the value was never specified, then it uses the
763 value of $DISPLAY environment variable as it was when
764 Vim was started.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100765 {only available when compiled with the |+clipboard|
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200766 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767
768 *g_CTRL-A*
769g CTRL-A Only when Vim was compiled with MEM_PROFILING defined
770 (which is very rare): print memory usage statistics.
771 Only useful for debugging Vim.
Bram Moolenaar345efa02016-01-15 20:57:49 +0100772 For incrementing in Visual mode see |v_g_CTRL-A|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
774==============================================================================
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +02007752. Using Vim like less or more *less*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776
777If you use the less or more program to view a file, you don't get syntax
778highlighting. Thus you would like to use Vim instead. You can do this by
779using the shell script "$VIMRUNTIME/macros/less.sh".
780
781This shell script uses the Vim script "$VIMRUNTIME/macros/less.vim". It sets
782up mappings to simulate the commands that less supports. Otherwise, you can
783still use the Vim commands.
784
785This isn't perfect. For example, when viewing a short file Vim will still use
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200786the whole screen. But it works well enough for most uses, and you get syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787highlighting.
788
789The "h" key will give you a short overview of the available commands.
790
Bram Moolenaare392eb42015-11-19 20:38:09 +0100791If you want to set options differently when using less, define the
792LessInitFunc in your vimrc, for example: >
793
794 func LessInitFunc()
795 set nocursorcolumn nocursorline
796 endfunc
797<
798
Bram Moolenaard2855f52018-07-31 22:23:58 +0200799 vim:tw=78:ts=8:noet:ft=help:norl: