blob: d339adc4d170ae00ecdc7bf5bda274e424386fef [file] [log] [blame]
Bram Moolenaar34feacb2012-12-05 19:01:43 +01001*various.txt* For Vim version 7.3. Last change: 2012 Dec 05
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
33 *N<Del>*
34<Del> When entering a number: Remove the last digit.
35 Note: if you like to use <BS> for this, add this
36 mapping to your .vimrc: >
37 :map CTRL-V <BS> CTRL-V <Del>
38< See |:fixdel| if your <Del> key does not do what you
39 want.
40
41:as[cii] or *ga* *:as* *:ascii*
42ga Print the ascii value of the character under the
43 cursor in decimal, hexadecimal and octal. For
44 example, when the cursor is on a 'R':
45 <R> 82, Hex 52, Octal 122 ~
46 When the character is a non-standard ASCII character,
47 but printable according to the 'isprint' option, the
48 non-printable version is also given. When the
49 character is larger than 127, the <M-x> form is also
50 printed. For example:
51 <~A> <M-^A> 129, Hex 81, Octal 201 ~
52 <p> <|~> <M-~> 254, Hex fe, Octal 376 ~
53 (where <p> is a special character)
54 The <Nul> character in a file is stored internally as
55 <NL>, but it will be shown as:
56 <^@> 0, Hex 00, Octal 000 ~
Bram Moolenaar362e1a32006-03-06 23:29:24 +000057 If the character has composing characters these are
58 also shown. The value of 'maxcombine' doesn't matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 Mnemonic: Get Ascii value. {not in Vi}
60
61 *g8*
62g8 Print the hex values of the bytes used in the
63 character under the cursor, assuming it is in |UTF-8|
Bram Moolenaar362e1a32006-03-06 23:29:24 +000064 encoding. This also shows composing characters. The
65 value of 'maxcombine' doesn't matter.
66 Example of a character with two composing characters:
Bram Moolenaar071d4272004-06-13 20:20:40 +000067 e0 b8 81 + e0 b8 b9 + e0 b9 89 ~
Bram Moolenaarca003e12006-03-17 23:19:38 +000068 {not in Vi} {only when compiled with the |+multi_byte|
69 feature}
70
71 *8g8*
728g8 Find an illegal UTF-8 byte sequence at or after the
73 cursor. This works in two situations:
74 1. when 'encoding' is any 8-bit encoding
75 2. when 'encoding' is "utf-8" and 'fileencoding' is
76 any 8-bit encoding
77 Thus it can be used when editing a file that was
78 supposed to be UTF-8 but was read as if it is an 8-bit
79 encoding because it contains illegal bytes.
80 Does not wrap around the end of the file.
81 Note that when the cursor is on an illegal byte or the
82 cursor is halfway a multi-byte character the command
83 won't move the cursor.
84 {not in Vi} {only when compiled with the |+multi_byte|
85 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +000086
Bram Moolenaar551dbcc2006-04-25 22:13:59 +000087 *:p* *:pr* *:print* *E749*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000088:[range]p[rint] [flags]
89 Print [range] lines (default current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 Note: If you are looking for a way to print your text
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000091 on paper see |:hardcopy|. In the GUI you can use the
92 File.Print menu entry.
93 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000095:[range]p[rint] {count} [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +000096 Print {count} lines, starting with [range] (default
97 current line |cmdline-ranges|).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000098 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
100 *:P* *:Print*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000101:[range]P[rint] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102 Just as ":print". Was apparently added to Vi for
103 people that keep the shift key pressed too long...
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100104 Note: A user command can overrule this command.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000105 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106
107 *:l* *:list*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000108:[range]l[ist] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 Same as :print, but display unprintable characters
Bram Moolenaarf9d5ca12010-08-01 16:13:51 +0200110 with '^' and put $ after the line. This can be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100111 further changed with the 'listchars' option.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000112 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113
114 *:nu* *:number*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000115:[range]nu[mber] [count] [flags]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 Same as :print, but precede each line with its line
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000117 number. (See also 'highlight' and 'numberwidth'
118 option).
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000119 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120
121 *:#*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000122:[range]# [count] [flags]
123 synonym for :number.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000125 *:#!*
126:#!{anything} Ignored, so that you can start a Vim script with: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000127 #!vim -S
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000128 echo "this is a Vim script"
129 quit
130<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 *:z* *E144*
132:{range}z[+-^.=]{count} Display several lines of text surrounding the line
133 specified with {range}, or around the current line
134 if there is no {range}. If there is a {count}, that's
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000135 how many lines you'll see; if there is only one window
Bram Moolenaar662db672011-03-22 14:05:35 +0100136 then twice the value of the 'scroll' option is used,
137 otherwise the current window height minus 3 is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100139 If there is a {count} the 'window' option is set to
140 its value.
141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 :z can be used either alone or followed by any of
143 several punctuation marks. These have the following
144 effect:
145
Bram Moolenaar662db672011-03-22 14:05:35 +0100146 mark first line last line new cursor line ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 ---- ---------- --------- ------------
148 + current line 1 scr forward 1 scr forward
149 - 1 scr back current line current line
150 ^ 2 scr back 1 scr back 1 scr back
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000151 . 1/2 scr back 1/2 scr fwd 1/2 scr fwd
152 = 1/2 scr back 1/2 scr fwd current line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153
154 Specifying no mark at all is the same as "+".
155 If the mark is "=", a line of dashes is printed
156 around the current line.
157
158:{range}z#[+-^.=]{count} *:z#*
159 Like ":z", but number the lines.
160 {not in all versions of Vi, not with these arguments}
161
162 *:=*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000163:= [flags] Print the last line number.
164 See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000166:{range}= [flags] Prints the last line number in {range}. For example,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167 this prints the current line number: >
168 :.=
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000169< See |ex-flags| for [flags].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
171:norm[al][!] {commands} *:norm* *:normal*
172 Execute Normal mode commands {commands}. This makes
173 it possible to execute Normal mode commands typed on
Bram Moolenaar4a748032010-09-30 21:47:56 +0200174 the command-line. {commands} are executed like they
175 are typed. For undo all commands are undone together.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000176 Execution stops when an error is encountered.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 If the [!] is given, mappings will not be used.
178 {commands} should be a complete command. If
179 {commands} does not finish a command, the last one
180 will be aborted as if <Esc> or <C-C> was typed.
181 The display isn't updated while ":normal" is busy.
182 This implies that an insert command must be completed
183 (to start Insert mode, see |:startinsert|). A ":"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000184 command must be completed as well. And you can't use
185 "Q" or "gQ" to start Ex mode.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100186 {commands} cannot start with a space. Put a count of
187 1 (one) before it, "1 " is one space.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 The 'insertmode' option is ignored for {commands}.
189 This command cannot be followed by another command,
190 since any '|' is considered part of the command.
191 This command can be used recursively, but the depth is
192 limited by 'maxmapdepth'.
193 When this command is called from a non-remappable
194 mapping |:noremap|, the argument can be mapped anyway.
195 An alternative is to use |:execute|, which uses an
196 expression as argument. This allows the use of
Bram Moolenaar46f9d492010-06-12 20:18:19 +0200197 printable characters to represent special characters.
198 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 :exe "normal \<c-w>\<c-w>"
200< {not in Vi, of course}
201 {not available when the |+ex_extra| feature was
202 disabled at compile time}
203
204:{range}norm[al][!] {commands} *:normal-range*
205 Execute Normal mode commands {commands} for each line
206 in the {range}. Before executing the {commands}, the
207 cursor is positioned in the first column of the range,
208 for each line. Otherwise it's the same as the
209 ":normal" command without a range.
210 {not in Vi}
Bram Moolenaardb84e452010-08-15 13:50:43 +0200211 {not available when |+ex_extra| feature was disabled
212 at compile time}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213
214 *:sh* *:shell* *E371*
215:sh[ell] This command starts a shell. When the shell exits
216 (after the "exit" command) you return to Vim. The
217 name for the shell command comes from 'shell' option.
218 *E360*
219 Note: This doesn't work when Vim on the Amiga was
220 started in QuickFix mode from a compiler, because the
221 compiler will have set stdin to a non-interactive
222 mode.
223
224 *:!cmd* *:!* *E34*
225:!{cmd} Execute {cmd} with the shell. See also the 'shell'
226 and 'shelltype' option.
227 Any '!' in {cmd} is replaced with the previous
228 external command (see also 'cpoptions'). But not when
229 there is a backslash before the '!', then that
230 backslash is removed. Example: ":!ls" followed by
231 ":!echo ! \! \\!" executes "echo ls ! \!".
232 After the command has been executed, the timestamp of
233 the current file is checked |timestamp|.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000234 A '|' in {cmd} is passed to the shell, you cannot use
235 it to append a Vim command. See |:bar|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 A newline character ends {cmd}, what follows is
237 interpreted as a following ":" command. However, if
238 there is a backslash before the newline it is removed
239 and {cmd} continues. It doesn't matter how many
240 backslashes are before the newline, only one is
241 removed.
242 On Unix the command normally runs in a non-interactive
243 shell. If you want an interactive shell to be used
244 (to use aliases) set 'shellcmdflag' to "-ic".
245 For Win32 also see |:!start|.
246 Vim redraws the screen after the command is finished,
247 because it may have printed any text. This requires a
248 hit-enter prompt, so that you can read any messages.
249 To avoid this use: >
250 :silent !{cmd}
251< The screen is not redrawn then, thus you have to use
252 CTRL-L or ":redraw!" if the command did display
253 something.
254 Also see |shell-window|.
255
256 *:!!*
257:!! Repeat last ":!{cmd}".
258
259 *:ve* *:version*
260:ve[rsion] Print the version number of the editor. If the
261 compiler used understands "__DATE__" the compilation
262 date is mentioned. Otherwise a fixed release-date is
263 shown.
264 The following lines contain information about which
265 features were enabled when Vim was compiled. When
266 there is a preceding '+', the feature is included,
267 when there is a '-' it is excluded. To change this,
268 you have to edit feature.h and recompile Vim.
269 To check for this in an expression, see |has()|.
270 Here is an overview of the features.
271 The first column shows the smallest version in which
272 they are included:
273 T tiny
274 S small
275 N normal
276 B big
277 H huge
278 m manually enabled or depends on other features
279 (none) system dependent
280 Thus if a feature is marked with "N", it is included
281 in the normal, big and huge versions of Vim.
282
283 *+feature-list*
284 *+ARP* Amiga only: ARP support included
285B *+arabic* |Arabic| language support
286N *+autocmd* |:autocmd|, automatic commands
Bram Moolenaar4d34b432005-03-07 23:22:00 +0000287m *+balloon_eval* |balloon-eval| support. Included when compiling with
288 supported GUI (Motif, GTK, GUI) and either
289 Netbeans/Sun Workshop integration or |+eval| feature.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290N *+browse* |:browse| command
291N *+builtin_terms* some terminals builtin |builtin-terms|
292B *++builtin_terms* maximal terminals builtin |builtin-terms|
293N *+byte_offset* support for 'o' flag in 'statusline' option, "go"
294 and ":goto" commands.
295N *+cindent* |'cindent'|, C indenting
296N *+clientserver* Unix and Win32: Remote invocation |clientserver|
297 *+clipboard* |clipboard| support
298N *+cmdline_compl* command line completion |cmdline-completion|
299N *+cmdline_hist* command line history |cmdline-history|
300N *+cmdline_info* |'showcmd'| and |'ruler'|
301N *+comments* |'comments'| support
Bram Moolenaarca8c9862010-07-24 15:00:38 +0200302B *+conceal* "conceal" support, see |conceal| |:syn-conceal| etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303N *+cryptv* encryption support |encryption|
304B *+cscope* |cscope| support
Bram Moolenaar860cae12010-06-05 23:22:07 +0200305m *+cursorbind* |'cursorbind'| support
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000306m *+cursorshape* |termcap-cursor-shape| support
307m *+debug* Compiled for debugging.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308N *+dialog_gui* Support for |:confirm| with GUI dialog.
309N *+dialog_con* Support for |:confirm| with console dialog.
310N *+dialog_con_gui* Support for |:confirm| with GUI and console dialog.
311N *+diff* |vimdiff| and 'diff'
312N *+digraphs* |digraphs| *E196*
313 *+dnd* Support for DnD into the "~ register |quote_~|.
314B *+emacs_tags* |emacs-tags| files
315N *+eval* expression evaluation |eval.txt|
316N *+ex_extra* Vim's extra Ex commands: |:center|, |:left|,
317 |:normal|, |:retab| and |:right|
318N *+extra_search* |'hlsearch'| and |'incsearch'| options.
319B *+farsi* |farsi| language
320N *+file_in_path* |gf|, |CTRL-W_f| and |<cfile>|
321N *+find_in_path* include file searches: |[I|, |:isearch|,
322 |CTRL-W_CTRL-I|, |:checkpath|, etc.
323N *+folding* |folding|
324 *+footer* |gui-footer|
325 *+fork* Unix only: |fork| shell commands
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000326 *+float* Floating point support
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327N *+gettext* message translations |multi-lang|
328 *+GUI_Athena* Unix only: Athena |GUI|
329 *+GUI_neXtaw* Unix only: neXtaw |GUI|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 *+GUI_GTK* Unix only: GTK+ |GUI|
331 *+GUI_Motif* Unix only: Motif |GUI|
332 *+GUI_Photon* QNX only: Photon |GUI|
333m *+hangul_input* Hangul input support |hangul|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000334 *+iconv* Compiled with the |iconv()| function
335 *+iconv/dyn* Likewise |iconv-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336N *+insert_expand* |insert_expand| Insert mode completion
337N *+jumplist* |jumplist|
338B *+keymap* |'keymap'|
339B *+langmap* |'langmap'|
340N *+libcall* |libcall()|
341N *+linebreak* |'linebreak'|, |'breakat'| and |'showbreak'|
342N *+lispindent* |'lisp'|
343N *+listcmds* Vim commands for the list of buffers |buffer-hidden|
344 and argument list |:argdelete|
345N *+localmap* Support for mappings local to a buffer |:map-local|
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200346m *+lua* |Lua| interface
347m *+lua/dyn* |Lua| interface |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348N *+menu* |:menu|
349N *+mksession* |:mksession|
350N *+modify_fname* |filename-modifiers|
351N *+mouse* Mouse handling |mouse-using|
352N *+mouseshape* |'mouseshape'|
353B *+mouse_dec* Unix only: Dec terminal mouse handling |dec-mouse|
354N *+mouse_gpm* Unix only: Linux console mouse handling |gpm-mouse|
355B *+mouse_netterm* Unix only: netterm mouse handling |netterm-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100356N *+mouse_pterm* QNX only: pterm mouse handling |qnx-terminal|
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000357N *+mouse_sysmouse* Unix only: *BSD console mouse handling |sysmouse|
Bram Moolenaar9b451252012-08-15 17:43:31 +0200358B *+mouse_sgr* Unix only: sgr mouse handling |sgr-mouse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100359B *+mouse_urxvt* Unix only: urxvt mouse handling |urxvt-mouse|
360N *+mouse_xterm* Unix only: xterm mouse handling |xterm-mouse|
361B *+multi_byte* 16 and 32 bit characters |multibyte|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 *+multi_byte_ime* Win32 input method for multibyte chars |multibyte-ime|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100363N *+multi_lang* non-English language support |multi-lang|
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000364m *+mzscheme* Mzscheme interface |mzscheme|
Bram Moolenaar4770d092006-01-12 23:22:24 +0000365m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366m *+netbeans_intg* |netbeans|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100367m *+ole* Win32 GUI only: |ole-interface|
368N *+path_extra* Up/downwards search in 'path' and 'tags'
Bram Moolenaara5792f52005-11-23 21:25:05 +0000369m *+perl* Perl interface |perl|
370m *+perl/dyn* Perl interface |perl-dynamic| |/dyn|
Bram Moolenaar7fc0c062010-08-10 21:43:35 +0200371N *+persistent_undo* Persistent undo |undo-persistence|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100372 *+postscript* |:hardcopy| writes a PostScript file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373N *+printer* |:hardcopy| command
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000374H *+profile* |:profile| command
Bram Moolenaar60aad972010-07-21 20:36:22 +0200375m *+python* Python 2 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100376m *+python/dyn* Python 2 interface |python-dynamic| |/dyn|
Bram Moolenaar60aad972010-07-21 20:36:22 +0200377m *+python3* Python 3 interface |python|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100378m *+python3/dyn* Python 3 interface |python-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379N *+quickfix* |:make| and |quickfix| commands
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000380N *+reltime* |reltime()| function, 'hlsearch'/'incsearch' timeout,
381 'redrawtime' option
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382B *+rightleft* Right to left typing |'rightleft'|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000383m *+ruby* Ruby interface |ruby|
384m *+ruby/dyn* Ruby interface |ruby-dynamic| |/dyn|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100385N *+scrollbind* |'scrollbind'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386B *+signs* |:sign|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100387N *+smartindent* |'smartindent'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388m *+sniff* SniFF interface |sniff|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100389N *+startuptime* |--startuptime| argument
390N *+statusline* Options 'statusline', 'rulerformat' and special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 formats of 'titlestring' and 'iconstring'
392m *+sun_workshop* |workshop|
393N *+syntax* Syntax highlighting |syntax|
394 *+system()* Unix only: opposite of |+fork|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100395N *+tag_binary* binary searching in tags file |tag-binary-search|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396N *+tag_old_static* old method for static tags |tag-old-static|
397m *+tag_any_white* any white space allowed in tags file |tag-any-white|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100398m *+tcl* Tcl interface |tcl|
Bram Moolenaara5792f52005-11-23 21:25:05 +0000399m *+tcl/dyn* Tcl interface |tcl-dynamic| |/dyn|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 *+terminfo* uses |terminfo| instead of termcap
401N *+termresponse* support for |t_RV| and |v:termresponse|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100402N *+textobjects* |text-objects| selection
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 *+tgetent* non-Unix only: able to use external termcap
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000404N *+title* Setting the window 'title' and 'icon'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405N *+toolbar* |gui-toolbar|
406N *+user_commands* User-defined commands. |user-commands|
407N *+viminfo* |'viminfo'|
408N *+vertsplit* Vertically split windows |:vsplit|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100409N *+virtualedit* |'virtualedit'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410S *+visual* Visual mode |Visual-mode|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100411N *+visualextra* extra Visual mode commands |blockwise-operators|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412N *+vreplace* |gR| and |gr|
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100413N *+wildignore* |'wildignore'|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414N *+wildmenu* |'wildmenu'|
415S *+windows* more than one window
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100416m *+writebackup* |'writebackup'| is default on
417m *+xim* X input method |xim|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 *+xfontset* X fontset support |xfontset|
Bram Moolenaar9b451252012-08-15 17:43:31 +0200419m *+xpm_w32* Win32 GUI only: pixmap support |w32-xpm-support|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 *+xsmp* XSMP (X session management) support
421 *+xsmp_interact* interactive XSMP (X session management) support
422N *+xterm_clipboard* Unix only: xterm clipboard handling
Bram Moolenaar34feacb2012-12-05 19:01:43 +0100423m *+xterm_save* save and restore xterm screen |xterm-screens|
424N *+X11* Unix only: can restore window title |X11|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425
426 */dyn* *E370* *E448*
427 To some of the features "/dyn" is added when the
428 feature is only available when the related library can
429 be dynamically loaded.
430
431:ve[rsion] {nr} Is now ignored. This was previously used to check the
432 version number of a .vimrc file. It was removed,
433 because you can now use the ":if" command for
434 version-dependent behavior. {not in Vi}
435
436 *:redi* *:redir*
437:redi[r][!] > {file} Redirect messages to file {file}. The messages which
438 are the output of commands are written to that file,
439 until redirection ends. The messages are also still
440 shown on the screen. When [!] is included, an
441 existing file is overwritten. When [!] is omitted,
442 and {file} exists, this command fails.
443 Only one ":redir" can be active at a time. Calls to
444 ":redir" will close any active redirection before
445 starting redirection to the new target.
446 To stop the messages and commands from being echoed to
447 the screen, put the commands in a function and call it
448 with ":silent call Function()".
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000449 An alternative is to use the 'verbosefile' option,
450 this can be used in combination with ":redir".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 {not in Vi}
452
453:redi[r] >> {file} Redirect messages to file {file}. Append if {file}
454 already exists. {not in Vi}
455
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000456:redi[r] @{a-zA-Z}
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000457:redi[r] @{a-zA-Z}> Redirect messages to register {a-z}. Append to the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 contents of the register if its name is given
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000459 uppercase {A-Z}. The ">" after the register name is
460 optional. {not in Vi}
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000461:redi[r] @{a-z}>> Append messages to register {a-z}. {not in Vi}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000463:redi[r] @*>
464:redi[r] @+> Redirect messages to the selection or clipboard. For
465 backward compatibility, the ">" after the register
466 name can be omitted. See |quotestar| and |quoteplus|.
467 {not in Vi}
468:redi[r] @*>>
469:redi[r] @+>> Append messages to the selection or clipboard.
470 {not in Vi}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000472:redi[r] @"> Redirect messages to the unnamed register. For
473 backward compatibility, the ">" after the register
474 name can be omitted. {not in Vi}
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000475:redi[r] @">> Append messages to the unnamed register. {not in Vi}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000477:redi[r] => {var} Redirect messages to a variable. If the variable
478 doesn't exist, then it is created. If the variable
479 exists, then it is initialized to an empty string.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000480 The variable will remain empty until redirection ends.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000481 Only string variables can be used. After the
482 redirection starts, if the variable is removed or
483 locked or the variable type is changed, then further
484 command output messages will cause errors. {not in Vi}
485
486:redi[r] =>> {var} Append messages to an existing variable. Only string
487 variables can be used. {not in Vi}
488
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489:redi[r] END End redirecting messages. {not in Vi}
490
491 *:sil* *:silent*
492:sil[ent][!] {command} Execute {command} silently. Normal messages will not
493 be given or added to the message history.
494 When [!] is added, error messages will also be
495 skipped, and commands and mappings will not be aborted
496 when an error is detected. |v:errmsg| is still set.
497 When [!] is not used, an error message will cause
498 further messages to be displayed normally.
499 Redirection, started with |:redir|, will continue as
500 usual, although there might be small differences.
501 This will allow redirecting the output of a command
502 without seeing it on the screen. Example: >
503 :redir >/tmp/foobar
504 :silent g/Aap/p
505 :redir END
506< To execute a Normal mode command silently, use the
507 |:normal| command. For example, to search for a
508 string without messages: >
509 :silent exe "normal /path\<CR>"
510< ":silent!" is useful to execute a command that may
511 fail, but the failure is to be ignored. Example: >
512 :let v:errmsg = ""
513 :silent! /^begin
514 :if v:errmsg != ""
515 : ... pattern was not found
516< ":silent" will also avoid the hit-enter prompt. When
517 using this for an external command, this may cause the
518 screen to be messed up. Use |CTRL-L| to clean it up
519 then.
520 ":silent menu ..." defines a menu that will not echo a
521 Command-line command. The command will still produce
522 messages though. Use ":silent" in the command itself
523 to avoid that: ":silent menu .... :silent command".
524
Bram Moolenaar8e258a42009-07-09 13:55:43 +0000525 *:uns* *:unsilent*
526:uns[ilent] {command} Execute {command} not silently. Only makes a
527 difference when |:silent| was used to get to this
528 command.
529 Use this for giving a message even when |:silent| was
530 used. In this example |:silent| is used to avoid the
531 message about reading the file and |:unsilent| to be
532 able to list the first line of each file. >
533 :silent argdo unsilent echo expand('%') . ": " . getline(1)
534<
535
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 *:verb* *:verbose*
537:[count]verb[ose] {command}
538 Execute {command} with 'verbose' set to [count]. If
Bram Moolenaared203462004-06-16 11:19:22 +0000539 [count] is omitted one is used. ":0verbose" can be
540 used to set 'verbose' to zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 The additional use of ":silent" makes messages
542 generated but not displayed.
543 The combination of ":silent" and ":verbose" can be
544 used to generate messages and check them with
545 |v:statusmsg| and friends. For example: >
546 :let v:statusmsg = ""
547 :silent verbose runtime foobar.vim
548 :if v:statusmsg != ""
549 : " foobar.vim could not be found
550 :endif
551< When concatenating another command, the ":verbose"
552 only applies to the first one: >
553 :4verbose set verbose | set verbose
554< verbose=4 ~
555 verbose=0 ~
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000556 For logging verbose messages in a file use the
557 'verbosefile' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000559 *:verbose-cmd*
560When 'verbose' is non-zero, listing the value of a Vim option or a key map or
Bram Moolenaare344bea2005-09-01 20:46:49 +0000561an abbreviation or a user-defined function or a command or a highlight group
562or an autocommand will also display where it was last defined. If it was
563defined manually then there will be no "Last set" message. When it was
564defined while executing a function, user command or autocommand, the script in
565which it was defined is reported.
Bram Moolenaardb84e452010-08-15 13:50:43 +0200566{not available when compiled without the |+eval| feature}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 *K*
569K Run a program to lookup the keyword under the
570 cursor. The name of the program is given with the
571 'keywordprg' (kp) option (default is "man"). The
572 keyword is formed of letters, numbers and the
573 characters in 'iskeyword'. The keyword under or
574 right of the cursor is used. The same can be done
575 with the command >
576 :!{program} {keyword}
577< There is an example of a program to use in the tools
578 directory of Vim. It is called 'ref' and does a
579 simple spelling check.
580 Special cases:
581 - If 'keywordprg' is empty, the ":help" command is
582 used. It's a good idea to include more characters
583 in 'iskeyword' then, to be able to find more help.
584 - When 'keywordprg' is equal to "man", a count before
585 "K" is inserted after the "man" command and before
586 the keyword. For example, using "2K" while the
587 cursor is on "mkdir", results in: >
588 !man 2 mkdir
589< - When 'keywordprg' is equal to "man -s", a count
590 before "K" is inserted after the "-s". If there is
591 no count, the "-s" is removed.
592 {not in Vi}
593
594 *v_K*
595{Visual}K Like "K", but use the visually highlighted text for
596 the keyword. Only works when the highlighted text is
597 not more than one line. {not in Vi}
598
599[N]gs *gs* *:sl* *:sleep*
600:[N]sl[eep] [N] [m] Do nothing for [N] seconds. When [m] is included,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000601 sleep for [N] milliseconds. The count for "gs" always
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 uses seconds. The default is one second. >
603 :sleep "sleep for one second
604 :5sleep "sleep for five seconds
605 :sleep 100m "sleep for a hundred milliseconds
606 10gs "sleep for ten seconds
607< Can be interrupted with CTRL-C (CTRL-Break on MS-DOS).
Bram Moolenaar677ee682005-01-27 14:41:15 +0000608 "gs" stands for "goto sleep".
609 While sleeping the cursor is positioned in the text,
610 if at a visible position. {not in Vi}
Bram Moolenaar15146672011-10-20 22:22:38 +0200611 Also process the received netbeans messages. {only
612 available when compiled with the |+netbeans_intg|
613 feature}
614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615
616 *g_CTRL-A*
617g CTRL-A Only when Vim was compiled with MEM_PROFILING defined
618 (which is very rare): print memory usage statistics.
619 Only useful for debugging Vim.
620
621==============================================================================
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +02006222. Using Vim like less or more *less*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
624If you use the less or more program to view a file, you don't get syntax
625highlighting. Thus you would like to use Vim instead. You can do this by
626using the shell script "$VIMRUNTIME/macros/less.sh".
627
628This shell script uses the Vim script "$VIMRUNTIME/macros/less.vim". It sets
629up mappings to simulate the commands that less supports. Otherwise, you can
630still use the Vim commands.
631
632This isn't perfect. For example, when viewing a short file Vim will still use
633the whole screen. But it works good enough for most uses, and you get syntax
634highlighting.
635
636The "h" key will give you a short overview of the available commands.
637
638 vim:tw=78:ts=8:ft=help:norl: