blob: fa4ad07d0974bd6d3dc441f8aef953ab491a1d59 [file] [log] [blame]
Bram Moolenaar9712ff12022-09-18 13:04:22 +01001*various.txt* For Vim version 9.0. Last change: 2022 Sep 17
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.
32
Bram Moolenaare12bab32019-01-08 22:02:56 +010033 *:redrawt* *:redrawtabline*
34:redrawt[abline] Redraw the tabline. Useful to update the tabline when
35 'tabline' includes an item that doesn't trigger
36 automatic updating.
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038 *N<Del>*
39<Del> When entering a number: Remove the last digit.
40 Note: if you like to use <BS> for this, add this
41 mapping to your .vimrc: >
42 :map CTRL-V <BS> CTRL-V <Del>
43< See |:fixdel| if your <Del> key does not do what you
44 want.
45
46:as[cii] or *ga* *:as* *:ascii*
47ga Print the ascii value of the character under the
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010048 cursor in decimal, hexadecimal and octal.
49 Mnemonic: Get Ascii value.
50
51 For example, when the cursor is on a 'R':
Bram Moolenaar071d4272004-06-13 20:20:40 +000052 <R> 82, Hex 52, Octal 122 ~
53 When the character is a non-standard ASCII character,
54 but printable according to the 'isprint' option, the
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010055 non-printable version is also given.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010056
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010057 When the character is larger than 127, the <M-x> form
58 is also printed. For example:
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 <~A> <M-^A> 129, Hex 81, Octal 201 ~
60 <p> <|~> <M-~> 254, Hex fe, Octal 376 ~
61 (where <p> is a special character)
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010062
Bram Moolenaar071d4272004-06-13 20:20:40 +000063 The <Nul> character in a file is stored internally as
64 <NL>, but it will be shown as:
65 <^@> 0, Hex 00, Octal 000 ~
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010066
Bram Moolenaar362e1a32006-03-06 23:29:24 +000067 If the character has composing characters these are
68 also shown. The value of 'maxcombine' doesn't matter.
Bram Moolenaar5f73ef82018-02-27 21:09:30 +010069
70 If the character can be inserted as a digraph, also
71 output the two characters that can be used to create
72 the character:
73 <ö> 246, Hex 00f6, Oct 366, Digr o: ~
74 This shows you can type CTRL-K o : to insert ö.
75
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 *g8*
77g8 Print the hex values of the bytes used in the
78 character under the cursor, assuming it is in |UTF-8|
Bram Moolenaar362e1a32006-03-06 23:29:24 +000079 encoding. This also shows composing characters. The
80 value of 'maxcombine' doesn't matter.
81 Example of a character with two composing characters:
Bram Moolenaar071d4272004-06-13 20:20:40 +000082 e0 b8 81 + e0 b8 b9 + e0 b9 89 ~
Bram Moolenaarca003e12006-03-17 23:19:38 +000083
84 *8g8*
858g8 Find an illegal UTF-8 byte sequence at or after the
86 cursor. This works in two situations:
87 1. when 'encoding' is any 8-bit encoding
88 2. when 'encoding' is "utf-8" and 'fileencoding' is
89 any 8-bit encoding
90 Thus it can be used when editing a file that was
91 supposed to be UTF-8 but was read as if it is an 8-bit
92 encoding because it contains illegal bytes.
93 Does not wrap around the end of the file.
94 Note that when the cursor is on an illegal byte or the
Bram Moolenaar207f0092020-08-30 17:20:20 +020095 cursor is halfway a multibyte character the command
Bram Moolenaarca003e12006-03-17 23:19:38 +000096 won't move the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
Bram Moolenaar551dbcc2006-04-25 22:13:59 +000098 *:p* *:pr* *:print* *E749*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000099:[range]p[rint] [flags]
100 Print [range] lines (default current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101 Note: If you are looking for a way to print your text
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000102 on paper see |:hardcopy|. In the GUI you can use the
103 File.Print menu entry.
104 See |ex-flags| for [flags].
Bram Moolenaar818078d2016-08-27 21:58:42 +0200105 The |:filter| command can be used to only show lines
106 matching a pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000108:[range]p[rint] {count} [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 Print {count} lines, starting with [range] (default
110 current line |cmdline-ranges|).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000111 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
113 *:P* *:Print*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000114:[range]P[rint] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 Just as ":print". Was apparently added to Vi for
116 people that keep the shift key pressed too long...
Bram Moolenaar1588bc82022-03-08 21:35:07 +0000117 This command is not supported in |Vim9| script.
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100118 Note: A user command can overrule this command.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000119 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120
121 *:l* *:list*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000122:[range]l[ist] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 Same as :print, but display unprintable characters
Bram Moolenaarf9d5ca12010-08-01 16:13:51 +0200124 with '^' and put $ after the line. This can be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100125 further changed with the 'listchars' option.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000126 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127
128 *:nu* *:number*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000129:[range]nu[mber] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 Same as :print, but precede each line with its line
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000131 number. (See also 'highlight' and 'numberwidth'
132 option).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000133 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
135 *:#*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000136:[range]# [count] [flags]
137 synonym for :number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000139 *:#!*
140:#!{anything} Ignored, so that you can start a Vim script with: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000141 #!vim -S
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000142 echo "this is a Vim script"
143 quit
144<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 *:z* *E144*
Bram Moolenaar4466ad62020-11-21 13:16:30 +0100146:[range]z[+-^.=][count] Display several lines of text surrounding the line
147 specified with [range], or around the current line
148 if there is no [range].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
Bram Moolenaar4466ad62020-11-21 13:16:30 +0100150 If there is a [count], that's how many lines you'll
151 see; if there is no [count] and only one window then
152 twice the value of the 'scroll' option is used,
153 otherwise the current window height minus 3 is used.
154 This is the value of "scr" in the table below.
155
156 If there is a [count] the 'window' option is set to
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100157 its value.
158
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 :z can be used either alone or followed by any of
Bram Moolenaar207f0092020-08-30 17:20:20 +0200160 several marks. These have the following effect:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161
Bram Moolenaar662db672011-03-22 14:05:35 +0100162 mark first line last line new cursor line ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 ---- ---------- --------- ------------
164 + current line 1 scr forward 1 scr forward
165 - 1 scr back current line current line
166 ^ 2 scr back 1 scr back 1 scr back
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000167 . 1/2 scr back 1/2 scr fwd 1/2 scr fwd
168 = 1/2 scr back 1/2 scr fwd current line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169
170 Specifying no mark at all is the same as "+".
171 If the mark is "=", a line of dashes is printed
172 around the current line.
173
Bram Moolenaar6c391a72021-09-09 21:55:11 +0200174 *:z!*
Dominique Pelle7f2dd1e2021-09-04 13:44:01 +0200175:[range]z![+-^.=][count]
Bram Moolenaar22863042021-10-16 15:23:36 +0100176 Like ":z", but when [count] is not specified, it
Dominique Pelle7f2dd1e2021-09-04 13:44:01 +0200177 defaults to the Vim window height minus one.
178
179:[range]z[!]#[+-^.=][count] *:z#*
180 Like ":z" or ":z!", but number the lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182 *:=*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000183:= [flags] Print the last line number.
184 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000186:{range}= [flags] Prints the last line number in {range}. For example,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 this prints the current line number: >
188 :.=
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000189< See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190
191:norm[al][!] {commands} *:norm* *:normal*
192 Execute Normal mode commands {commands}. This makes
193 it possible to execute Normal mode commands typed on
Bram Moolenaar4a748032010-09-30 21:47:56 +0200194 the command-line. {commands} are executed like they
195 are typed. For undo all commands are undone together.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000196 Execution stops when an error is encountered.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100197
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 If the [!] is given, mappings will not be used.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100199 Without it, when this command is called from a
200 non-remappable mapping (|:noremap|), the argument can
201 be mapped anyway.
202
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 {commands} should be a complete command. If
204 {commands} does not finish a command, the last one
205 will be aborted as if <Esc> or <C-C> was typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 This implies that an insert command must be completed
207 (to start Insert mode, see |:startinsert|). A ":"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000208 command must be completed as well. And you can't use
209 "Q" or "gQ" to start Ex mode.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100210
211 The display is not updated while ":normal" is busy.
212
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100213 {commands} cannot start with a space. Put a count of
214 1 (one) before it, "1 " is one space.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100215
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 The 'insertmode' option is ignored for {commands}.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100217
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 This command cannot be followed by another command,
219 since any '|' is considered part of the command.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100220
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 This command can be used recursively, but the depth is
222 limited by 'maxmapdepth'.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100223
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 An alternative is to use |:execute|, which uses an
225 expression as argument. This allows the use of
Bram Moolenaar46f9d492010-06-12 20:18:19 +0200226 printable characters to represent special characters.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100227
Bram Moolenaar46f9d492010-06-12 20:18:19 +0200228 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 :exe "normal \<c-w>\<c-w>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230
231:{range}norm[al][!] {commands} *:normal-range*
232 Execute Normal mode commands {commands} for each line
233 in the {range}. Before executing the {commands}, the
234 cursor is positioned in the first column of the range,
235 for each line. Otherwise it's the same as the
236 ":normal" command without a range.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238 *:sh* *:shell* *E371*
239:sh[ell] This command starts a shell. When the shell exits
240 (after the "exit" command) you return to Vim. The
241 name for the shell command comes from 'shell' option.
242 *E360*
243 Note: This doesn't work when Vim on the Amiga was
244 started in QuickFix mode from a compiler, because the
245 compiler will have set stdin to a non-interactive
246 mode.
247
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000248 *:!cmd* *:!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249:!{cmd} Execute {cmd} with the shell. See also the 'shell'
250 and 'shelltype' option.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000251 *E34*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 Any '!' in {cmd} is replaced with the previous
253 external command (see also 'cpoptions'). But not when
254 there is a backslash before the '!', then that
255 backslash is removed. Example: ":!ls" followed by
256 ":!echo ! \! \\!" executes "echo ls ! \!".
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200257
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000258 A '|' in {cmd} is passed to the shell, you cannot use
259 it to append a Vim command. See |:bar|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200260
261 If {cmd} contains "%" it is expanded to the current
Bram Moolenaaracc22402020-06-07 21:07:18 +0200262 file name, "#" is expanded to the alternate file name.
263 Special characters in the file name are not escaped,
264 use quotes to avoid their special meaning: >
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200265 :!ls "%"
Bram Moolenaaracc22402020-06-07 21:07:18 +0200266< If the file name contains a "$" then single quotes
267 might work better, but this only works if the file
268 name does not contain a single quote: >
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200269 :!ls '%'
270< This should always work, but it's more typing: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000271 :exe "!ls " .. shellescape(expand("%"))
Bram Moolenaaracc22402020-06-07 21:07:18 +0200272< To get a literal "%" or "#" prepend it with a
273 backslash. For example, to list all files starting
274 with "%": >
275 :!ls \%*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200276<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 A newline character ends {cmd}, what follows is
278 interpreted as a following ":" command. However, if
279 there is a backslash before the newline it is removed
280 and {cmd} continues. It doesn't matter how many
281 backslashes are before the newline, only one is
282 removed.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200283
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 On Unix the command normally runs in a non-interactive
285 shell. If you want an interactive shell to be used
286 (to use aliases) set 'shellcmdflag' to "-ic".
287 For Win32 also see |:!start|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200288
Bram Moolenaare968e362014-05-13 20:23:24 +0200289 After the command has been executed, the timestamp and
290 size of the current file is checked |timestamp|.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200291
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 Vim redraws the screen after the command is finished,
293 because it may have printed any text. This requires a
294 hit-enter prompt, so that you can read any messages.
295 To avoid this use: >
296 :silent !{cmd}
297< The screen is not redrawn then, thus you have to use
298 CTRL-L or ":redraw!" if the command did display
299 something.
300 Also see |shell-window|.
301
302 *:!!*
303:!! Repeat last ":!{cmd}".
304
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200305 *:ve* *:ver* *:version*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306:ve[rsion] Print the version number of the editor. If the
307 compiler used understands "__DATE__" the compilation
308 date is mentioned. Otherwise a fixed release-date is
309 shown.
310 The following lines contain information about which
311 features were enabled when Vim was compiled. When
312 there is a preceding '+', the feature is included,
313 when there is a '-' it is excluded. To change this,
314 you have to edit feature.h and recompile Vim.
315 To check for this in an expression, see |has()|.
316 Here is an overview of the features.
317 The first column shows the smallest version in which
318 they are included:
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100319 T tiny (always)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 S small
321 N normal
322 B big
323 H huge
324 m manually enabled or depends on other features
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100325 - never, feature was removed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 (none) system dependent
327 Thus if a feature is marked with "N", it is included
328 in the normal, big and huge versions of Vim.
329
330 *+feature-list*
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200331 *+acl* |ACL| support included
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 *+ARP* Amiga only: ARP support included
333B *+arabic* |Arabic| language support
Bram Moolenaarff781552020-03-19 20:37:11 +0100334B *+autochdir* support 'autochdir' option
Bram Moolenaarfd999452022-08-24 18:30:14 +0100335T *+autocmd* |:autocmd|, automatic commands. Always enabled since
336 8.0.1564
Bram Moolenaare42a6d22017-11-12 19:21:51 +0100337H *+autoservername* Automatically enable |clientserver|
Bram Moolenaara2a80162017-11-21 23:09:50 +0100338m *+balloon_eval* |balloon-eval| support in the GUI. Included when
339 compiling with supported GUI (Motif, GTK, GUI) and
340 either Netbeans/Sun Workshop integration or |+eval|
341 feature.
342H *+balloon_eval_term* |balloon-eval| support in the terminal,
343 'balloonevalterm'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344N *+browse* |:browse| command
Bram Moolenaar2ee347f2022-08-26 17:53:44 +0100345T *++builtin_terms* maximal terminals builtin |builtin-terms| Always
346 enabled since 9.0.0280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347N *+byte_offset* support for 'o' flag in 'statusline' option, "go"
348 and ":goto" commands.
Bram Moolenaar298b4402016-01-28 22:38:53 +0100349m *+channel* inter process communication |channel|
Bram Moolenaar8e145b82022-05-21 20:17:31 +01003506 *+cindent* |'cindent'|, C indenting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351N *+clientserver* Unix and Win32: Remote invocation |clientserver|
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200352 *+clipboard* |clipboard| support compiled-in
353 *+clipboard_working* |clipboard| support compiled-in and working
Bram Moolenaar06fe74a2019-08-31 16:20:32 +0200354T *+cmdline_compl* command line completion |cmdline-completion|
Bram Moolenaar85388672021-01-31 17:03:52 +0100355T *+cmdline_hist* command line history |cmdline-history|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356N *+cmdline_info* |'showcmd'| and |'ruler'|
Bram Moolenaar85388672021-01-31 17:03:52 +0100357S *+cmdwin* |cmdline-window| support
Bram Moolenaar8c96af92019-09-28 19:05:57 +0200358T *+comments* |'comments'| support
Bram Moolenaarca8c9862010-07-24 15:00:38 +0200359B *+conceal* "conceal" support, see |conceal| |:syn-conceal| etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360N *+cryptv* encryption support |encryption|
361B *+cscope* |cscope| support
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100362T *+cursorbind* |'cursorbind'| support
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000363m *+cursorshape* |termcap-cursor-shape| support
364m *+debug* Compiled for debugging.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365N *+dialog_gui* Support for |:confirm| with GUI dialog.
366N *+dialog_con* Support for |:confirm| with console dialog.
367N *+dialog_con_gui* Support for |:confirm| with GUI and console dialog.
368N *+diff* |vimdiff| and 'diff'
369N *+digraphs* |digraphs| *E196*
Bram Moolenaar43cb6262018-03-14 21:39:02 +0100370 *+directx* Win32 GUI only: DirectX and |'renderoptions'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 *+dnd* Support for DnD into the "~ register |quote_~|.
372B *+emacs_tags* |emacs-tags| files
373N *+eval* expression evaluation |eval.txt|
Bram Moolenaar47003982021-12-05 21:54:04 +0000374T *+ex_extra* always on now, used to be for Vim's extra Ex commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375N *+extra_search* |'hlsearch'| and |'incsearch'| options.
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100376- *+farsi* Removed: |farsi| language
Bram Moolenaar7dd54322022-08-26 18:01:12 +0100377T *+file_in_path* |gf|, |CTRL-W_f| and |<cfile>| Always enabled since
378 9.0.265
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379N *+find_in_path* include file searches: |[I|, |:isearch|,
380 |CTRL-W_CTRL-I|, |:checkpath|, etc.
381N *+folding* |folding|
382 *+footer* |gui-footer|
383 *+fork* Unix only: |fork| shell commands
Bram Moolenaar73e28dc2022-09-17 21:08:33 +0100384T *+float* Floating point support Always enabled since 9.0.0491
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385N *+gettext* message translations |multi-lang|
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100386- *+GUI_Athena* Unix only: Athena |GUI|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 *+GUI_neXtaw* Unix only: neXtaw |GUI|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 *+GUI_GTK* Unix only: GTK+ |GUI|
389 *+GUI_Motif* Unix only: Motif |GUI|
390 *+GUI_Photon* QNX only: Photon |GUI|
391m *+hangul_input* Hangul input support |hangul|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000392 *+iconv* Compiled with the |iconv()| function
393 *+iconv/dyn* Likewise |iconv-dynamic| |/dyn|
Bram Moolenaar06fe74a2019-08-31 16:20:32 +0200394T *+insert_expand* |insert_expand| Insert mode completion
Bram Moolenaarbfe13cc2020-04-12 17:53:12 +0200395m *+ipv6* Support for IPv6 networking |channel|
Bram Moolenaar38a55632016-02-15 22:07:32 +0100396m *+job* starting and stopping jobs |job|
Bram Moolenaar739f13a2021-12-13 13:12:53 +0000397T *+jumplist* |jumplist|; Always enabled since 8.2.3795
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398B *+keymap* |'keymap'|
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200399N *+lambda* |lambda| and |closure|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400B *+langmap* |'langmap'|
401N *+libcall* |libcall()|
402N *+linebreak* |'linebreak'|, |'breakat'| and |'showbreak'|
Bram Moolenaar8e145b82022-05-21 20:17:31 +0100403t *+lispindent* |'lisp'|
Bram Moolenaar0c72fe42018-03-29 16:04:08 +0200404T *+listcmds* Vim commands for the list of buffers |buffer-hidden|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 and argument list |:argdelete|
Bram Moolenaar088e8e32019-08-08 22:15:18 +0200406T *+localmap* Support for mappings local to a buffer |:map-local|
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200407m *+lua* |Lua| interface
408m *+lua/dyn* |Lua| interface |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409N *+menu* |:menu|
410N *+mksession* |:mksession|
Bram Moolenaar30e9b3c2019-09-07 16:24:12 +0200411T *+modify_fname* |filename-modifiers|
Bram Moolenaar96f45c02019-10-26 19:53:45 +0200412T *+mouse* Mouse handling |mouse-using|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413N *+mouseshape* |'mouseshape'|
414B *+mouse_dec* Unix only: Dec terminal mouse handling |dec-mouse|
415N *+mouse_gpm* Unix only: Linux console mouse handling |gpm-mouse|
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100416m *+mouse_gpm/dyn* Same as |+mouse_gpm| with optional library dependency
417 |/dyn|
Bram Moolenaar13600302014-05-22 18:26:40 +0200418N *+mouse_jsbterm* JSB mouse handling |jsbterm-mouse|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419B *+mouse_netterm* Unix only: netterm mouse handling |netterm-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100420N *+mouse_pterm* QNX only: pterm mouse handling |qnx-terminal|
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000421N *+mouse_sysmouse* Unix only: *BSD console mouse handling |sysmouse|
Bram Moolenaar9b451252012-08-15 17:43:31 +0200422B *+mouse_sgr* Unix only: sgr mouse handling |sgr-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100423B *+mouse_urxvt* Unix only: urxvt mouse handling |urxvt-mouse|
424N *+mouse_xterm* Unix only: xterm mouse handling |xterm-mouse|
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100425T *+multi_byte* Unicode support, 16 and 32 bit characters |multibyte|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 *+multi_byte_ime* Win32 input method for multibyte chars |multibyte-ime|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100427N *+multi_lang* non-English language support |multi-lang|
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000428m *+mzscheme* Mzscheme interface |mzscheme|
Bram Moolenaar4770d092006-01-12 23:22:24 +0000429m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430m *+netbeans_intg* |netbeans|
Bram Moolenaar47003982021-12-05 21:54:04 +0000431T *+num64* 64-bit Number support |Number|
Bram Moolenaara2baa732022-02-04 16:09:54 +0000432 Always enabled since 8.2.0271, use v:numbersize to
Bram Moolenaarf9706e92020-02-22 14:27:04 +0100433 check the actual size of a Number.
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100434m *+ole* Win32 GUI only: |ole-interface|
Bram Moolenaar91c49372016-05-08 09:50:29 +0200435N *+packages* Loading |packages|
Bram Moolenaar2bd9dbc2022-08-25 18:12:06 +0100436T *+path_extra* Up/downwards search in 'path' and 'tags' Always
437 enabled since 9.0.0270
Bram Moolenaara5792f52005-11-23 21:25:05 +0000438m *+perl* Perl interface |perl|
439m *+perl/dyn* Perl interface |perl-dynamic| |/dyn|
Bram Moolenaar7fc0c062010-08-10 21:43:35 +0200440N *+persistent_undo* Persistent undo |undo-persistence|
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100441N *+popupwin* Popup windows |popup-window|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100442 *+postscript* |:hardcopy| writes a PostScript file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443N *+printer* |:hardcopy| command
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000444H *+profile* |:profile| command
Bram Moolenaar60aad972010-07-21 20:36:22 +0200445m *+python* Python 2 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100446m *+python/dyn* Python 2 interface |python-dynamic| |/dyn|
Bram Moolenaar60aad972010-07-21 20:36:22 +0200447m *+python3* Python 3 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100448m *+python3/dyn* Python 3 interface |python-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449N *+quickfix* |:make| and |quickfix| commands
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000450N *+reltime* |reltime()| function, 'hlsearch'/'incsearch' timeout,
451 'redrawtime' option
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452B *+rightleft* Right to left typing |'rightleft'|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000453m *+ruby* Ruby interface |ruby|
454m *+ruby/dyn* Ruby interface |ruby-dynamic| |/dyn|
Bram Moolenaar98ef2332018-03-18 14:44:37 +0100455T *+scrollbind* |'scrollbind'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456B *+signs* |:sign|
Bram Moolenaar8e145b82022-05-21 20:17:31 +0100457t *+smartindent* |'smartindent'|
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200458B *+sodium* compiled with libsodium for better encryption support
Bram Moolenaar12ee7ff2019-06-10 22:47:40 +0200459B *+sound* |sound_playevent()|, |sound_playfile()| functions, etc.
460N *+spell* spell checking support, see |spell|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100461N *+startuptime* |--startuptime| argument
462N *+statusline* Options 'statusline', 'rulerformat' and special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 formats of 'titlestring' and 'iconstring'
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100464- *+sun_workshop* Removed: |workshop|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465N *+syntax* Syntax highlighting |syntax|
466 *+system()* Unix only: opposite of |+fork|
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200467T *+tag_binary* binary searching in tags file |tag-binary-search|
Bram Moolenaar4ceaa3a2019-12-03 22:49:09 +0100468- *+tag_old_static* Removed; method for static tags |tag-old-static|
469- *+tag_any_white* Removed; was to allow any white space in tags files
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100470m *+tcl* Tcl interface |tcl|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000471m *+tcl/dyn* Tcl interface |tcl-dynamic| |/dyn|
Bram Moolenaar1ccd8ff2017-08-11 19:50:37 +0200472m *+terminal* Support for terminal window |terminal|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 *+terminfo* uses |terminfo| instead of termcap
474N *+termresponse* support for |t_RV| and |v:termresponse|
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200475B *+termguicolors* 24-bit color in xterm-compatible terminals support
Bram Moolenaar88774872022-08-16 20:24:29 +0100476T *+textobjects* |text-objects| selection. Always enabled since 9.0.0222.
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100477N *+textprop* |text-properties|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478 *+tgetent* non-Unix only: able to use external termcap
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100479N *+timers* the |timer_start()| function
Bram Moolenaar47003982021-12-05 21:54:04 +0000480T *+title* Setting the window 'title' and 'icon'; Always enabled
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481N *+toolbar* |gui-toolbar|
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200482T *+user_commands* User-defined commands. |user-commands|
483 Always enabled since 8.1.1210.
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200484B *+vartabs* Variable-width tabstops. |'vartabstop'|
Bram Moolenaar47003982021-12-05 21:54:04 +0000485T *+vertsplit* Vertically split windows |:vsplit|; Always enabled
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200486 since 8.0.1118.
Bram Moolenaara6feb162022-01-02 12:06:33 +0000487T *+vim9script* |Vim9| script
488N *+viminfo* |'viminfo'|
Bram Moolenaar47003982021-12-05 21:54:04 +0000489T *+virtualedit* |'virtualedit'| Always enabled since 8.1.826.
Bram Moolenaar870ba5f2019-01-11 14:37:20 +0100490T *+visual* Visual mode |Visual-mode| Always enabled since 7.4.200.
491T *+visualextra* extra Visual mode commands |blockwise-operators|
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +0200492T *+vreplace* |gR| and |gr|
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +0100493 *+vtp* on MS-Windows console: support for 'termguicolors'
Bram Moolenaar074fbd42022-08-26 16:41:14 +0100494T *+wildignore* |'wildignore'| Always enabled since 9.0.0278
Bram Moolenaar54162322022-08-26 16:58:51 +0100495T *+wildmenu* |'wildmenu'|| Always enabled since 9.0.0279
Bram Moolenaar870ba5f2019-01-11 14:37:20 +0100496T *+windows* more than one window; Always enabled since 8.0.1118.
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100497m *+writebackup* |'writebackup'| is default on
498m *+xim* X input method |xim|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 *+xfontset* X fontset support |xfontset|
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200500 *+xpm* pixmap support
Bram Moolenaar9b451252012-08-15 17:43:31 +0200501m *+xpm_w32* Win32 GUI only: pixmap support |w32-xpm-support|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 *+xsmp* XSMP (X session management) support
503 *+xsmp_interact* interactive XSMP (X session management) support
504N *+xterm_clipboard* Unix only: xterm clipboard handling
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100505m *+xterm_save* save and restore xterm screen |xterm-screens|
506N *+X11* Unix only: can restore window title |X11|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
508 */dyn* *E370* *E448*
509 To some of the features "/dyn" is added when the
510 feature is only available when the related library can
511 be dynamically loaded.
512
513:ve[rsion] {nr} Is now ignored. This was previously used to check the
514 version number of a .vimrc file. It was removed,
515 because you can now use the ":if" command for
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200516 version-dependent behavior.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517
518 *:redi* *:redir*
519:redi[r][!] > {file} Redirect messages to file {file}. The messages which
520 are the output of commands are written to that file,
521 until redirection ends. The messages are also still
522 shown on the screen. When [!] is included, an
523 existing file is overwritten. When [!] is omitted,
524 and {file} exists, this command fails.
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200525
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 Only one ":redir" can be active at a time. Calls to
527 ":redir" will close any active redirection before
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200528 starting redirection to the new target. For recursive
529 use check out |execute()|.
530
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 To stop the messages and commands from being echoed to
532 the screen, put the commands in a function and call it
533 with ":silent call Function()".
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000534 An alternative is to use the 'verbosefile' option,
535 this can be used in combination with ":redir".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536
537:redi[r] >> {file} Redirect messages to file {file}. Append if {file}
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200538 already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000540:redi[r] @{a-zA-Z}
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000541:redi[r] @{a-zA-Z}> Redirect messages to register {a-z}. Append to the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 contents of the register if its name is given
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000543 uppercase {A-Z}. The ">" after the register name is
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200544 optional.
545:redi[r] @{a-z}>> Append messages to register {a-z}.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100547:redi[r] @*>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000548:redi[r] @+> Redirect messages to the selection or clipboard. For
549 backward compatibility, the ">" after the register
550 name can be omitted. See |quotestar| and |quoteplus|.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100551:redi[r] @*>>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000552:redi[r] @+>> Append messages to the selection or clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000554:redi[r] @"> Redirect messages to the unnamed register. For
555 backward compatibility, the ">" after the register
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200556 name can be omitted.
557:redi[r] @">> Append messages to the unnamed register.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000558 *E1092*
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000559:redi[r] => {var} Redirect messages to a variable.
560 In legacy script: If the variable doesn't exist, then
561 it is created. If the variable exists, then it is
562 initialized to an empty string. After the redirection
563 starts, if the variable is removed or locked or the
564 variable type is changed, then further command output
Bram Moolenaare1dc76f2022-06-25 18:01:32 +0100565 messages will cause errors. When using a local
566 variable (l:var in a function or s:var in a script)
567 and another `:redir` causes the current one to end,
568 the scope might be different and the assignment fails.
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000569 In Vim9 script: the variable must have been declared
570 as a string.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000571 The variable will remain empty until redirection ends.
Bram Moolenaarfa3b7232021-12-24 13:18:38 +0000572 Only string variables can be used.
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200573 To get the output of one command the |execute()|
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200574 function can be used instead of redirection.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000575
576:redi[r] =>> {var} Append messages to an existing variable. Only string
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200577 variables can be used.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000578 *E1185*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200579:redi[r] END End redirecting messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200581 *:filt* *:filter*
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000582:filt[er][!] {pattern} {command}
583:filt[er][!] /{pattern}/ {command}
Bram Moolenaar214641f2017-03-05 17:04:09 +0100584 Restrict the output of {command} to lines matching
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000585 with {pattern}. For example, to list only xml files: >
Bram Moolenaar818078d2016-08-27 21:58:42 +0200586 :filter /\.xml$/ oldfiles
Bram Moolenaar214641f2017-03-05 17:04:09 +0100587< If the [!] is given, restrict the output of {command}
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000588 to lines that do NOT match {pattern}.
Bram Moolenaar214641f2017-03-05 17:04:09 +0100589
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000590 {pattern} is a Vim search pattern. Instead of enclosing
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200591 it in / any non-ID character (see |'isident'|) can be
Bram Moolenaarfd31be22022-01-16 14:46:06 +0000592 used, so long as it does not appear in {pattern}.
593 Without the enclosing character the pattern cannot
594 include the bar character. 'ignorecase' is not used.
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200595
596 The pattern is matched against the relevant part of
597 the output, not necessarily the whole line. Only some
598 commands support filtering, try it out to check if it
Bram Moolenaarf86db782018-10-25 13:31:37 +0200599 works. Some of the commands that support filtering:
Bram Moolenaarad6dc492019-04-27 22:40:08 +0200600 |:#| - filter whole line
601 |:clist| - filter by file name or module name
602 |:command| - filter by command name
603 |:files| - filter by file name
604 |:highlight| - filter by highlight group
605 |:jumps| - filter by file name
606 |:let| - filter by variable name
607 |:list| - filter whole line
608 |:llist| - filter by file name or module name
609 |:marks| - filter by text in the current file,
610 or file name for other files
611 |:oldfiles| - filter by file name
Bram Moolenaar8fc42962019-10-26 17:33:13 +0200612 |:registers| - filter by register contents
613 (does not work multi-line)
Bram Moolenaar0e6adf82021-12-16 14:41:10 +0000614 |:set| - filter by option name
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200615
616 Only normal messages are filtered, error messages are
617 not.
618
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100619 *:sil* *:silent* *:silent!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620:sil[ent][!] {command} Execute {command} silently. Normal messages will not
621 be given or added to the message history.
622 When [!] is added, error messages will also be
623 skipped, and commands and mappings will not be aborted
624 when an error is detected. |v:errmsg| is still set.
625 When [!] is not used, an error message will cause
626 further messages to be displayed normally.
627 Redirection, started with |:redir|, will continue as
628 usual, although there might be small differences.
629 This will allow redirecting the output of a command
630 without seeing it on the screen. Example: >
631 :redir >/tmp/foobar
632 :silent g/Aap/p
633 :redir END
634< To execute a Normal mode command silently, use the
635 |:normal| command. For example, to search for a
636 string without messages: >
637 :silent exe "normal /path\<CR>"
638< ":silent!" is useful to execute a command that may
639 fail, but the failure is to be ignored. Example: >
640 :let v:errmsg = ""
641 :silent! /^begin
642 :if v:errmsg != ""
643 : ... pattern was not found
644< ":silent" will also avoid the hit-enter prompt. When
645 using this for an external command, this may cause the
646 screen to be messed up. Use |CTRL-L| to clean it up
647 then.
648 ":silent menu ..." defines a menu that will not echo a
649 Command-line command. The command will still produce
650 messages though. Use ":silent" in the command itself
651 to avoid that: ":silent menu .... :silent command".
652
Bram Moolenaar8e258a42009-07-09 13:55:43 +0000653 *:uns* *:unsilent*
654:uns[ilent] {command} Execute {command} not silently. Only makes a
655 difference when |:silent| was used to get to this
656 command.
657 Use this for giving a message even when |:silent| was
658 used. In this example |:silent| is used to avoid the
659 message about reading the file and |:unsilent| to be
660 able to list the first line of each file. >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000661 :silent argdo unsilent echo expand('%') .. ": " .. getline(1)
Bram Moolenaar8e258a42009-07-09 13:55:43 +0000662<
663
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 *:verb* *:verbose*
665:[count]verb[ose] {command}
666 Execute {command} with 'verbose' set to [count]. If
Bram Moolenaared203462004-06-16 11:19:22 +0000667 [count] is omitted one is used. ":0verbose" can be
668 used to set 'verbose' to zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 The additional use of ":silent" makes messages
670 generated but not displayed.
671 The combination of ":silent" and ":verbose" can be
672 used to generate messages and check them with
673 |v:statusmsg| and friends. For example: >
674 :let v:statusmsg = ""
675 :silent verbose runtime foobar.vim
676 :if v:statusmsg != ""
677 : " foobar.vim could not be found
678 :endif
679< When concatenating another command, the ":verbose"
680 only applies to the first one: >
681 :4verbose set verbose | set verbose
682< verbose=4 ~
683 verbose=0 ~
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000684 For logging verbose messages in a file use the
685 'verbosefile' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000687 *:verbose-cmd*
688When 'verbose' is non-zero, listing the value of a Vim option or a key map or
Bram Moolenaare344bea2005-09-01 20:46:49 +0000689an abbreviation or a user-defined function or a command or a highlight group
690or an autocommand will also display where it was last defined. If it was
691defined manually then there will be no "Last set" message. When it was
692defined while executing a function, user command or autocommand, the script in
693which it was defined is reported.
Bram Moolenaardb84e452010-08-15 13:50:43 +0200694{not available when compiled without the |+eval| feature}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000695
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 *K*
697K Run a program to lookup the keyword under the
698 cursor. The name of the program is given with the
699 'keywordprg' (kp) option (default is "man"). The
700 keyword is formed of letters, numbers and the
701 characters in 'iskeyword'. The keyword under or
702 right of the cursor is used. The same can be done
703 with the command >
704 :!{program} {keyword}
705< There is an example of a program to use in the tools
Bram Moolenaar214641f2017-03-05 17:04:09 +0100706 directory of Vim. It is called "ref" and does a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 simple spelling check.
708 Special cases:
Bram Moolenaar26852122016-05-24 20:02:38 +0200709 - If 'keywordprg' begins with ":" it is invoked as
710 a Vim Ex command with [count].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 - If 'keywordprg' is empty, the ":help" command is
712 used. It's a good idea to include more characters
713 in 'iskeyword' then, to be able to find more help.
Bram Moolenaar26852122016-05-24 20:02:38 +0200714 - When 'keywordprg' is equal to "man" or starts with
715 ":", a [count] before "K" is inserted after
716 keywordprg and before the keyword. For example,
717 using "2K" while the cursor is on "mkdir", results
718 in: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 !man 2 mkdir
720< - When 'keywordprg' is equal to "man -s", a count
721 before "K" is inserted after the "-s". If there is
722 no count, the "-s" is removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
724 *v_K*
725{Visual}K Like "K", but use the visually highlighted text for
726 the keyword. Only works when the highlighted text is
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200727 not more than one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728
729[N]gs *gs* *:sl* *:sleep*
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100730:[N]sl[eep] [N][m] Do nothing for [N] seconds. When [m] is included,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000731 sleep for [N] milliseconds. The count for "gs" always
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 uses seconds. The default is one second. >
733 :sleep "sleep for one second
734 :5sleep "sleep for five seconds
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100735 :sleep 100m "sleep for 100 milliseconds
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 10gs "sleep for ten seconds
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100737< Can be interrupted with CTRL-C (CTRL-Break on
738 MS-Windows). "gs" stands for "goto sleep".
Bram Moolenaar677ee682005-01-27 14:41:15 +0000739 While sleeping the cursor is positioned in the text,
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200740 if at a visible position.
Bram Moolenaar15146672011-10-20 22:22:38 +0200741 Also process the received netbeans messages. {only
742 available when compiled with the |+netbeans_intg|
743 feature}
744
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100745 *:sl!* *:sleep!*
Bram Moolenaar2346a632021-06-13 19:02:49 +0200746:[N]sl[eep]! [N][m] Same as above, but hide the cursor.
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100747
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200748 *:xrestore* *:xr*
749:xr[estore] [display] Reinitializes the connection to the X11 server. Useful
750 after the X server restarts, e.g. when running Vim for
751 long time inside screen/tmux and connecting from
Bram Moolenaar68e65602019-05-26 21:33:31 +0200752 different machines.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100753 [display] should be in the format of the $DISPLAY
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200754 environment variable (e.g. "localhost:10.0")
755 If [display] is omitted, then it reinitializes the
756 connection to the X11 server using the same value as
757 was used for the previous execution of this command.
758 If the value was never specified, then it uses the
759 value of $DISPLAY environment variable as it was when
760 Vim was started.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100761 {only available when compiled with the |+clipboard|
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200762 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763
764 *g_CTRL-A*
765g CTRL-A Only when Vim was compiled with MEM_PROFILING defined
766 (which is very rare): print memory usage statistics.
767 Only useful for debugging Vim.
Bram Moolenaar345efa02016-01-15 20:57:49 +0100768 For incrementing in Visual mode see |v_g_CTRL-A|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769
770==============================================================================
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +02007712. Using Vim like less or more *less*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772
773If you use the less or more program to view a file, you don't get syntax
774highlighting. Thus you would like to use Vim instead. You can do this by
775using the shell script "$VIMRUNTIME/macros/less.sh".
776
777This shell script uses the Vim script "$VIMRUNTIME/macros/less.vim". It sets
778up mappings to simulate the commands that less supports. Otherwise, you can
779still use the Vim commands.
780
781This isn't perfect. For example, when viewing a short file Vim will still use
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200782the whole screen. But it works well enough for most uses, and you get syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783highlighting.
784
785The "h" key will give you a short overview of the available commands.
786
Bram Moolenaare392eb42015-11-19 20:38:09 +0100787If you want to set options differently when using less, define the
788LessInitFunc in your vimrc, for example: >
789
790 func LessInitFunc()
791 set nocursorcolumn nocursorline
792 endfunc
793<
794
Bram Moolenaard2855f52018-07-31 22:23:58 +0200795 vim:tw=78:ts=8:noet:ft=help:norl: