Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 1 | *various.txt* For Vim version 8.0. Last change: 2017 Feb 24 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
| 6 | |
| 7 | Various commands *various* |
| 8 | |
| 9 | 1. Various commands |various-cmds| |
Bram Moolenaar | 9160441 | 2010-06-03 20:25:18 +0200 | [diff] [blame] | 10 | 2. Using Vim like less or more |less| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 11 | |
| 12 | ============================================================================== |
| 13 | 1. Various commands *various-cmds* |
| 14 | |
| 15 | *CTRL-L* |
Bram Moolenaar | 30abd28 | 2005-06-22 22:35:10 +0000 | [diff] [blame] | 16 | CTRL-L Clear and redraw the screen. The redraw may happen |
| 17 | later, after processing typeahead. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | |
| 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* |
| 42 | ga 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 Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 57 | If the character has composing characters these are |
| 58 | also shown. The value of 'maxcombine' doesn't matter. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 59 | Mnemonic: Get Ascii value. {not in Vi} |
| 60 | |
| 61 | *g8* |
| 62 | g8 Print the hex values of the bytes used in the |
| 63 | character under the cursor, assuming it is in |UTF-8| |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 64 | encoding. This also shows composing characters. The |
| 65 | value of 'maxcombine' doesn't matter. |
| 66 | Example of a character with two composing characters: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 67 | e0 b8 81 + e0 b8 b9 + e0 b9 89 ~ |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 68 | {not in Vi} {only when compiled with the |+multi_byte| |
| 69 | feature} |
| 70 | |
| 71 | *8g8* |
| 72 | 8g8 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 86 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 87 | *:p* *:pr* *:print* *E749* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 88 | :[range]p[rint] [flags] |
| 89 | Print [range] lines (default current line). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 90 | Note: If you are looking for a way to print your text |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 91 | on paper see |:hardcopy|. In the GUI you can use the |
| 92 | File.Print menu entry. |
| 93 | See |ex-flags| for [flags]. |
Bram Moolenaar | 818078d | 2016-08-27 21:58:42 +0200 | [diff] [blame] | 94 | The |:filter| command can be used to only show lines |
| 95 | matching a pattern. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 96 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 97 | :[range]p[rint] {count} [flags] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | Print {count} lines, starting with [range] (default |
| 99 | current line |cmdline-ranges|). |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 100 | See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 101 | |
| 102 | *:P* *:Print* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 103 | :[range]P[rint] [count] [flags] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | Just as ":print". Was apparently added to Vi for |
| 105 | people that keep the shift key pressed too long... |
Bram Moolenaar | 166af9b | 2010-11-16 20:34:40 +0100 | [diff] [blame] | 106 | Note: A user command can overrule this command. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 107 | See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 108 | |
| 109 | *:l* *:list* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 110 | :[range]l[ist] [count] [flags] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 111 | Same as :print, but display unprintable characters |
Bram Moolenaar | f9d5ca1 | 2010-08-01 16:13:51 +0200 | [diff] [blame] | 112 | with '^' and put $ after the line. This can be |
Bram Moolenaar | d58e929 | 2011-02-09 17:07:58 +0100 | [diff] [blame] | 113 | further changed with the 'listchars' option. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 114 | See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 115 | |
| 116 | *:nu* *:number* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 117 | :[range]nu[mber] [count] [flags] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | Same as :print, but precede each line with its line |
Bram Moolenaar | faa959a | 2006-02-20 21:37:40 +0000 | [diff] [blame] | 119 | number. (See also 'highlight' and 'numberwidth' |
| 120 | option). |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 121 | See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 122 | |
| 123 | *:#* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 124 | :[range]# [count] [flags] |
| 125 | synonym for :number. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 126 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 127 | *:#!* |
| 128 | :#!{anything} Ignored, so that you can start a Vim script with: > |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 129 | #!vim -S |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 130 | echo "this is a Vim script" |
| 131 | quit |
| 132 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 133 | *:z* *E144* |
| 134 | :{range}z[+-^.=]{count} Display several lines of text surrounding the line |
| 135 | specified with {range}, or around the current line |
| 136 | if there is no {range}. If there is a {count}, that's |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 137 | how many lines you'll see; if there is only one window |
Bram Moolenaar | 662db67 | 2011-03-22 14:05:35 +0100 | [diff] [blame] | 138 | then twice the value of the 'scroll' option is used, |
| 139 | otherwise the current window height minus 3 is used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 140 | |
Bram Moolenaar | b6b046b | 2011-12-30 13:11:27 +0100 | [diff] [blame] | 141 | If there is a {count} the 'window' option is set to |
| 142 | its value. |
| 143 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 144 | :z can be used either alone or followed by any of |
| 145 | several punctuation marks. These have the following |
| 146 | effect: |
| 147 | |
Bram Moolenaar | 662db67 | 2011-03-22 14:05:35 +0100 | [diff] [blame] | 148 | mark first line last line new cursor line ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | ---- ---------- --------- ------------ |
| 150 | + current line 1 scr forward 1 scr forward |
| 151 | - 1 scr back current line current line |
| 152 | ^ 2 scr back 1 scr back 1 scr back |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 153 | . 1/2 scr back 1/2 scr fwd 1/2 scr fwd |
| 154 | = 1/2 scr back 1/2 scr fwd current line |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | |
| 156 | Specifying no mark at all is the same as "+". |
| 157 | If the mark is "=", a line of dashes is printed |
| 158 | around the current line. |
| 159 | |
| 160 | :{range}z#[+-^.=]{count} *:z#* |
| 161 | Like ":z", but number the lines. |
| 162 | {not in all versions of Vi, not with these arguments} |
| 163 | |
| 164 | *:=* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 165 | := [flags] Print the last line number. |
| 166 | See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 167 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 168 | :{range}= [flags] Prints the last line number in {range}. For example, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 169 | this prints the current line number: > |
| 170 | :.= |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 171 | < See |ex-flags| for [flags]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 172 | |
| 173 | :norm[al][!] {commands} *:norm* *:normal* |
| 174 | Execute Normal mode commands {commands}. This makes |
| 175 | it possible to execute Normal mode commands typed on |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 176 | the command-line. {commands} are executed like they |
| 177 | are typed. For undo all commands are undone together. |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 178 | Execution stops when an error is encountered. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 179 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 180 | If the [!] is given, mappings will not be used. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 181 | Without it, when this command is called from a |
| 182 | non-remappable mapping (|:noremap|), the argument can |
| 183 | be mapped anyway. |
| 184 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 185 | {commands} should be a complete command. If |
| 186 | {commands} does not finish a command, the last one |
| 187 | will be aborted as if <Esc> or <C-C> was typed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 188 | This implies that an insert command must be completed |
| 189 | (to start Insert mode, see |:startinsert|). A ":" |
Bram Moolenaar | 7c62692 | 2005-02-07 22:01:03 +0000 | [diff] [blame] | 190 | command must be completed as well. And you can't use |
| 191 | "Q" or "gQ" to start Ex mode. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 192 | |
| 193 | The display is not updated while ":normal" is busy. |
| 194 | |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 195 | {commands} cannot start with a space. Put a count of |
| 196 | 1 (one) before it, "1 " is one space. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 197 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 198 | The 'insertmode' option is ignored for {commands}. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 199 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 200 | This command cannot be followed by another command, |
| 201 | since any '|' is considered part of the command. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 202 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 203 | This command can be used recursively, but the depth is |
| 204 | limited by 'maxmapdepth'. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 205 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 206 | An alternative is to use |:execute|, which uses an |
| 207 | expression as argument. This allows the use of |
Bram Moolenaar | 46f9d49 | 2010-06-12 20:18:19 +0200 | [diff] [blame] | 208 | printable characters to represent special characters. |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 209 | |
Bram Moolenaar | 46f9d49 | 2010-06-12 20:18:19 +0200 | [diff] [blame] | 210 | Example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 211 | :exe "normal \<c-w>\<c-w>" |
| 212 | < {not in Vi, of course} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 213 | |
| 214 | :{range}norm[al][!] {commands} *:normal-range* |
| 215 | Execute Normal mode commands {commands} for each line |
| 216 | in the {range}. Before executing the {commands}, the |
| 217 | cursor is positioned in the first column of the range, |
| 218 | for each line. Otherwise it's the same as the |
| 219 | ":normal" command without a range. |
| 220 | {not in Vi} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 221 | |
| 222 | *:sh* *:shell* *E371* |
| 223 | :sh[ell] This command starts a shell. When the shell exits |
| 224 | (after the "exit" command) you return to Vim. The |
| 225 | name for the shell command comes from 'shell' option. |
| 226 | *E360* |
| 227 | Note: This doesn't work when Vim on the Amiga was |
| 228 | started in QuickFix mode from a compiler, because the |
| 229 | compiler will have set stdin to a non-interactive |
| 230 | mode. |
| 231 | |
| 232 | *:!cmd* *:!* *E34* |
| 233 | :!{cmd} Execute {cmd} with the shell. See also the 'shell' |
| 234 | and 'shelltype' option. |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 235 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 236 | Any '!' in {cmd} is replaced with the previous |
| 237 | external command (see also 'cpoptions'). But not when |
| 238 | there is a backslash before the '!', then that |
| 239 | backslash is removed. Example: ":!ls" followed by |
| 240 | ":!echo ! \! \\!" executes "echo ls ! \!". |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 241 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 242 | A '|' in {cmd} is passed to the shell, you cannot use |
| 243 | it to append a Vim command. See |:bar|. |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 244 | |
| 245 | If {cmd} contains "%" it is expanded to the current |
| 246 | file name. Special characters are not escaped, use |
| 247 | quotes to avoid their special meaning: > |
| 248 | :!ls "%" |
| 249 | < If the file name contains a "$" single quotes might |
| 250 | work better (but a single quote causes trouble): > |
| 251 | :!ls '%' |
| 252 | < This should always work, but it's more typing: > |
| 253 | :exe "!ls " . shellescape(expand("%")) |
| 254 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | A newline character ends {cmd}, what follows is |
| 256 | interpreted as a following ":" command. However, if |
| 257 | there is a backslash before the newline it is removed |
| 258 | and {cmd} continues. It doesn't matter how many |
| 259 | backslashes are before the newline, only one is |
| 260 | removed. |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 261 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 262 | On Unix the command normally runs in a non-interactive |
| 263 | shell. If you want an interactive shell to be used |
| 264 | (to use aliases) set 'shellcmdflag' to "-ic". |
| 265 | For Win32 also see |:!start|. |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 266 | |
Bram Moolenaar | e968e36 | 2014-05-13 20:23:24 +0200 | [diff] [blame] | 267 | After the command has been executed, the timestamp and |
| 268 | size of the current file is checked |timestamp|. |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 269 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 270 | Vim redraws the screen after the command is finished, |
| 271 | because it may have printed any text. This requires a |
| 272 | hit-enter prompt, so that you can read any messages. |
| 273 | To avoid this use: > |
| 274 | :silent !{cmd} |
| 275 | < The screen is not redrawn then, thus you have to use |
| 276 | CTRL-L or ":redraw!" if the command did display |
| 277 | something. |
| 278 | Also see |shell-window|. |
| 279 | |
| 280 | *:!!* |
| 281 | :!! Repeat last ":!{cmd}". |
| 282 | |
| 283 | *:ve* *:version* |
| 284 | :ve[rsion] Print the version number of the editor. If the |
| 285 | compiler used understands "__DATE__" the compilation |
| 286 | date is mentioned. Otherwise a fixed release-date is |
| 287 | shown. |
| 288 | The following lines contain information about which |
| 289 | features were enabled when Vim was compiled. When |
| 290 | there is a preceding '+', the feature is included, |
| 291 | when there is a '-' it is excluded. To change this, |
| 292 | you have to edit feature.h and recompile Vim. |
| 293 | To check for this in an expression, see |has()|. |
| 294 | Here is an overview of the features. |
| 295 | The first column shows the smallest version in which |
| 296 | they are included: |
| 297 | T tiny |
| 298 | S small |
| 299 | N normal |
| 300 | B big |
| 301 | H huge |
| 302 | m manually enabled or depends on other features |
| 303 | (none) system dependent |
| 304 | Thus if a feature is marked with "N", it is included |
| 305 | in the normal, big and huge versions of Vim. |
| 306 | |
| 307 | *+feature-list* |
Bram Moolenaar | 7cba6c0 | 2013-09-05 22:13:31 +0200 | [diff] [blame] | 308 | *+acl* |ACL| support included |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 309 | *+ARP* Amiga only: ARP support included |
| 310 | B *+arabic* |Arabic| language support |
| 311 | N *+autocmd* |:autocmd|, automatic commands |
Bram Moolenaar | 4d34b43 | 2005-03-07 23:22:00 +0000 | [diff] [blame] | 312 | m *+balloon_eval* |balloon-eval| support. Included when compiling with |
| 313 | supported GUI (Motif, GTK, GUI) and either |
| 314 | Netbeans/Sun Workshop integration or |+eval| feature. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 315 | N *+browse* |:browse| command |
| 316 | N *+builtin_terms* some terminals builtin |builtin-terms| |
| 317 | B *++builtin_terms* maximal terminals builtin |builtin-terms| |
| 318 | N *+byte_offset* support for 'o' flag in 'statusline' option, "go" |
| 319 | and ":goto" commands. |
Bram Moolenaar | 298b440 | 2016-01-28 22:38:53 +0100 | [diff] [blame] | 320 | m *+channel* inter process communication |channel| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 321 | N *+cindent* |'cindent'|, C indenting |
| 322 | N *+clientserver* Unix and Win32: Remote invocation |clientserver| |
| 323 | *+clipboard* |clipboard| support |
| 324 | N *+cmdline_compl* command line completion |cmdline-completion| |
| 325 | N *+cmdline_hist* command line history |cmdline-history| |
| 326 | N *+cmdline_info* |'showcmd'| and |'ruler'| |
| 327 | N *+comments* |'comments'| support |
Bram Moolenaar | ca8c986 | 2010-07-24 15:00:38 +0200 | [diff] [blame] | 328 | B *+conceal* "conceal" support, see |conceal| |:syn-conceal| etc. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 329 | N *+cryptv* encryption support |encryption| |
| 330 | B *+cscope* |cscope| support |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 331 | m *+cursorbind* |'cursorbind'| support |
Bram Moolenaar | ac6e65f | 2005-08-29 22:25:38 +0000 | [diff] [blame] | 332 | m *+cursorshape* |termcap-cursor-shape| support |
| 333 | m *+debug* Compiled for debugging. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 334 | N *+dialog_gui* Support for |:confirm| with GUI dialog. |
| 335 | N *+dialog_con* Support for |:confirm| with console dialog. |
| 336 | N *+dialog_con_gui* Support for |:confirm| with GUI and console dialog. |
| 337 | N *+diff* |vimdiff| and 'diff' |
| 338 | N *+digraphs* |digraphs| *E196* |
Bram Moolenaar | b5a7a8b | 2014-08-06 14:52:30 +0200 | [diff] [blame] | 339 | m *+directx* Win32 GUI only: DirectX and |'renderoptions'| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 340 | *+dnd* Support for DnD into the "~ register |quote_~|. |
| 341 | B *+emacs_tags* |emacs-tags| files |
| 342 | N *+eval* expression evaluation |eval.txt| |
Bram Moolenaar | 5e9b2fa | 2016-02-01 22:37:05 +0100 | [diff] [blame] | 343 | N *+ex_extra* always on now, used to be for Vim's extra Ex commands |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 344 | N *+extra_search* |'hlsearch'| and |'incsearch'| options. |
| 345 | B *+farsi* |farsi| language |
| 346 | N *+file_in_path* |gf|, |CTRL-W_f| and |<cfile>| |
| 347 | N *+find_in_path* include file searches: |[I|, |:isearch|, |
| 348 | |CTRL-W_CTRL-I|, |:checkpath|, etc. |
| 349 | N *+folding* |folding| |
| 350 | *+footer* |gui-footer| |
| 351 | *+fork* Unix only: |fork| shell commands |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 352 | *+float* Floating point support |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 353 | N *+gettext* message translations |multi-lang| |
| 354 | *+GUI_Athena* Unix only: Athena |GUI| |
| 355 | *+GUI_neXtaw* Unix only: neXtaw |GUI| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 356 | *+GUI_GTK* Unix only: GTK+ |GUI| |
| 357 | *+GUI_Motif* Unix only: Motif |GUI| |
| 358 | *+GUI_Photon* QNX only: Photon |GUI| |
| 359 | m *+hangul_input* Hangul input support |hangul| |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 360 | *+iconv* Compiled with the |iconv()| function |
| 361 | *+iconv/dyn* Likewise |iconv-dynamic| |/dyn| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 362 | N *+insert_expand* |insert_expand| Insert mode completion |
Bram Moolenaar | 38a5563 | 2016-02-15 22:07:32 +0100 | [diff] [blame] | 363 | m *+job* starting and stopping jobs |job| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 364 | N *+jumplist* |jumplist| |
| 365 | B *+keymap* |'keymap'| |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 366 | N *+lambda* |lambda| and |closure| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 367 | B *+langmap* |'langmap'| |
| 368 | N *+libcall* |libcall()| |
| 369 | N *+linebreak* |'linebreak'|, |'breakat'| and |'showbreak'| |
| 370 | N *+lispindent* |'lisp'| |
| 371 | N *+listcmds* Vim commands for the list of buffers |buffer-hidden| |
| 372 | and argument list |:argdelete| |
| 373 | N *+localmap* Support for mappings local to a buffer |:map-local| |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 374 | m *+lua* |Lua| interface |
| 375 | m *+lua/dyn* |Lua| interface |/dyn| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | N *+menu* |:menu| |
| 377 | N *+mksession* |:mksession| |
| 378 | N *+modify_fname* |filename-modifiers| |
| 379 | N *+mouse* Mouse handling |mouse-using| |
| 380 | N *+mouseshape* |'mouseshape'| |
| 381 | B *+mouse_dec* Unix only: Dec terminal mouse handling |dec-mouse| |
| 382 | N *+mouse_gpm* Unix only: Linux console mouse handling |gpm-mouse| |
Bram Moolenaar | 1360030 | 2014-05-22 18:26:40 +0200 | [diff] [blame] | 383 | N *+mouse_jsbterm* JSB mouse handling |jsbterm-mouse| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 384 | B *+mouse_netterm* Unix only: netterm mouse handling |netterm-mouse| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 385 | N *+mouse_pterm* QNX only: pterm mouse handling |qnx-terminal| |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 386 | N *+mouse_sysmouse* Unix only: *BSD console mouse handling |sysmouse| |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 387 | B *+mouse_sgr* Unix only: sgr mouse handling |sgr-mouse| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 388 | B *+mouse_urxvt* Unix only: urxvt mouse handling |urxvt-mouse| |
| 389 | N *+mouse_xterm* Unix only: xterm mouse handling |xterm-mouse| |
Bram Moolenaar | e6ae622 | 2013-05-21 21:01:10 +0200 | [diff] [blame] | 390 | N *+multi_byte* 16 and 32 bit characters |multibyte| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 391 | *+multi_byte_ime* Win32 input method for multibyte chars |multibyte-ime| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 392 | N *+multi_lang* non-English language support |multi-lang| |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 393 | m *+mzscheme* Mzscheme interface |mzscheme| |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 394 | m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 395 | m *+netbeans_intg* |netbeans| |
Bram Moolenaar | 22fcfad | 2016-07-01 18:17:26 +0200 | [diff] [blame] | 396 | *+num64* 64-bit Number support |Number| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 397 | m *+ole* Win32 GUI only: |ole-interface| |
Bram Moolenaar | 91c4937 | 2016-05-08 09:50:29 +0200 | [diff] [blame] | 398 | N *+packages* Loading |packages| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 399 | N *+path_extra* Up/downwards search in 'path' and 'tags' |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 400 | m *+perl* Perl interface |perl| |
| 401 | m *+perl/dyn* Perl interface |perl-dynamic| |/dyn| |
Bram Moolenaar | 7fc0c06 | 2010-08-10 21:43:35 +0200 | [diff] [blame] | 402 | N *+persistent_undo* Persistent undo |undo-persistence| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 403 | *+postscript* |:hardcopy| writes a PostScript file |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 404 | N *+printer* |:hardcopy| command |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 405 | H *+profile* |:profile| command |
Bram Moolenaar | 60aad97 | 2010-07-21 20:36:22 +0200 | [diff] [blame] | 406 | m *+python* Python 2 interface |python| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 407 | m *+python/dyn* Python 2 interface |python-dynamic| |/dyn| |
Bram Moolenaar | 60aad97 | 2010-07-21 20:36:22 +0200 | [diff] [blame] | 408 | m *+python3* Python 3 interface |python| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 409 | m *+python3/dyn* Python 3 interface |python-dynamic| |/dyn| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 410 | N *+quickfix* |:make| and |quickfix| commands |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 411 | N *+reltime* |reltime()| function, 'hlsearch'/'incsearch' timeout, |
| 412 | 'redrawtime' option |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 413 | B *+rightleft* Right to left typing |'rightleft'| |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 414 | m *+ruby* Ruby interface |ruby| |
| 415 | m *+ruby/dyn* Ruby interface |ruby-dynamic| |/dyn| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 416 | N *+scrollbind* |'scrollbind'| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 417 | B *+signs* |:sign| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 418 | N *+smartindent* |'smartindent'| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 419 | N *+startuptime* |--startuptime| argument |
| 420 | N *+statusline* Options 'statusline', 'rulerformat' and special |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 421 | formats of 'titlestring' and 'iconstring' |
| 422 | m *+sun_workshop* |workshop| |
| 423 | N *+syntax* Syntax highlighting |syntax| |
| 424 | *+system()* Unix only: opposite of |+fork| |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 425 | T *+tag_binary* binary searching in tags file |tag-binary-search| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 426 | N *+tag_old_static* old method for static tags |tag-old-static| |
| 427 | m *+tag_any_white* any white space allowed in tags file |tag-any-white| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 428 | m *+tcl* Tcl interface |tcl| |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 429 | m *+tcl/dyn* Tcl interface |tcl-dynamic| |/dyn| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 430 | *+terminfo* uses |terminfo| instead of termcap |
| 431 | N *+termresponse* support for |t_RV| and |v:termresponse| |
Bram Moolenaar | 61be73b | 2016-04-29 22:59:22 +0200 | [diff] [blame] | 432 | B *+termguicolors* 24-bit color in xterm-compatible terminals support |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 433 | N *+textobjects* |text-objects| selection |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 434 | *+tgetent* non-Unix only: able to use external termcap |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 435 | N *+timers* the |timer_start()| function |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 436 | N *+title* Setting the window 'title' and 'icon' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 437 | N *+toolbar* |gui-toolbar| |
| 438 | N *+user_commands* User-defined commands. |user-commands| |
| 439 | N *+viminfo* |'viminfo'| |
| 440 | N *+vertsplit* Vertically split windows |:vsplit| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 441 | N *+virtualedit* |'virtualedit'| |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 442 | S *+visual* Visual mode |Visual-mode| Always enabled since 7.4.200. |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 443 | N *+visualextra* extra Visual mode commands |blockwise-operators| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 444 | N *+vreplace* |gR| and |gr| |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 445 | N *+wildignore* |'wildignore'| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 446 | N *+wildmenu* |'wildmenu'| |
| 447 | S *+windows* more than one window |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 448 | m *+writebackup* |'writebackup'| is default on |
| 449 | m *+xim* X input method |xim| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 450 | *+xfontset* X fontset support |xfontset| |
Bram Moolenaar | 7cba6c0 | 2013-09-05 22:13:31 +0200 | [diff] [blame] | 451 | *+xpm* pixmap support |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 452 | m *+xpm_w32* Win32 GUI only: pixmap support |w32-xpm-support| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 453 | *+xsmp* XSMP (X session management) support |
| 454 | *+xsmp_interact* interactive XSMP (X session management) support |
| 455 | N *+xterm_clipboard* Unix only: xterm clipboard handling |
Bram Moolenaar | 34feacb | 2012-12-05 19:01:43 +0100 | [diff] [blame] | 456 | m *+xterm_save* save and restore xterm screen |xterm-screens| |
| 457 | N *+X11* Unix only: can restore window title |X11| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 458 | |
| 459 | */dyn* *E370* *E448* |
| 460 | To some of the features "/dyn" is added when the |
| 461 | feature is only available when the related library can |
| 462 | be dynamically loaded. |
| 463 | |
| 464 | :ve[rsion] {nr} Is now ignored. This was previously used to check the |
| 465 | version number of a .vimrc file. It was removed, |
| 466 | because you can now use the ":if" command for |
| 467 | version-dependent behavior. {not in Vi} |
| 468 | |
| 469 | *:redi* *:redir* |
| 470 | :redi[r][!] > {file} Redirect messages to file {file}. The messages which |
| 471 | are the output of commands are written to that file, |
| 472 | until redirection ends. The messages are also still |
| 473 | shown on the screen. When [!] is included, an |
| 474 | existing file is overwritten. When [!] is omitted, |
| 475 | and {file} exists, this command fails. |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 476 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 477 | Only one ":redir" can be active at a time. Calls to |
| 478 | ":redir" will close any active redirection before |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 479 | starting redirection to the new target. For recursive |
| 480 | use check out |execute()|. |
| 481 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 482 | To stop the messages and commands from being echoed to |
| 483 | the screen, put the commands in a function and call it |
| 484 | with ":silent call Function()". |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 485 | An alternative is to use the 'verbosefile' option, |
| 486 | this can be used in combination with ":redir". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 487 | {not in Vi} |
| 488 | |
| 489 | :redi[r] >> {file} Redirect messages to file {file}. Append if {file} |
| 490 | already exists. {not in Vi} |
| 491 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 492 | :redi[r] @{a-zA-Z} |
Bram Moolenaar | 6c0b44b | 2005-06-01 21:56:33 +0000 | [diff] [blame] | 493 | :redi[r] @{a-zA-Z}> Redirect messages to register {a-z}. Append to the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 494 | contents of the register if its name is given |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 495 | uppercase {A-Z}. The ">" after the register name is |
| 496 | optional. {not in Vi} |
Bram Moolenaar | 34cdc3e | 2005-05-18 22:24:46 +0000 | [diff] [blame] | 497 | :redi[r] @{a-z}>> Append messages to register {a-z}. {not in Vi} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 498 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 499 | :redi[r] @*> |
| 500 | :redi[r] @+> Redirect messages to the selection or clipboard. For |
| 501 | backward compatibility, the ">" after the register |
| 502 | name can be omitted. See |quotestar| and |quoteplus|. |
| 503 | {not in Vi} |
| 504 | :redi[r] @*>> |
| 505 | :redi[r] @+>> Append messages to the selection or clipboard. |
| 506 | {not in Vi} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 507 | |
Bram Moolenaar | 6c0b44b | 2005-06-01 21:56:33 +0000 | [diff] [blame] | 508 | :redi[r] @"> Redirect messages to the unnamed register. For |
| 509 | backward compatibility, the ">" after the register |
| 510 | name can be omitted. {not in Vi} |
Bram Moolenaar | 34cdc3e | 2005-05-18 22:24:46 +0000 | [diff] [blame] | 511 | :redi[r] @">> Append messages to the unnamed register. {not in Vi} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 512 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 513 | :redi[r] => {var} Redirect messages to a variable. If the variable |
| 514 | doesn't exist, then it is created. If the variable |
| 515 | exists, then it is initialized to an empty string. |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 516 | The variable will remain empty until redirection ends. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 517 | Only string variables can be used. After the |
| 518 | redirection starts, if the variable is removed or |
| 519 | locked or the variable type is changed, then further |
| 520 | command output messages will cause errors. {not in Vi} |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 521 | To get the output of one command the |execute()| |
| 522 | function can be used. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 523 | |
| 524 | :redi[r] =>> {var} Append messages to an existing variable. Only string |
| 525 | variables can be used. {not in Vi} |
| 526 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 527 | :redi[r] END End redirecting messages. {not in Vi} |
| 528 | |
Bram Moolenaar | 7b668e8 | 2016-08-23 23:51:21 +0200 | [diff] [blame] | 529 | *:filt* *:filter* |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 530 | :filt[er][!] {pat} {command} |
| 531 | :filt[er][!] /{pat}/ {command} |
| 532 | Restrict the output of {command} to lines matching |
| 533 | with {pat}. For example, to list only xml files: > |
Bram Moolenaar | 818078d | 2016-08-27 21:58:42 +0200 | [diff] [blame] | 534 | :filter /\.xml$/ oldfiles |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 535 | < If the [!] is given, restrict the output of {command} |
| 536 | to lines that do NOT match {pat}. |
| 537 | |
Bram Moolenaar | 7b668e8 | 2016-08-23 23:51:21 +0200 | [diff] [blame] | 538 | {pat} is a Vim search pattern. Instead of enclosing |
| 539 | it in / any non-ID character (see |'isident'|) can be |
| 540 | used, so long as it does not appear in {pat}. Without |
| 541 | the enclosing character the pattern cannot include the |
| 542 | bar character. |
| 543 | |
| 544 | The pattern is matched against the relevant part of |
| 545 | the output, not necessarily the whole line. Only some |
| 546 | commands support filtering, try it out to check if it |
| 547 | works. |
| 548 | |
| 549 | Only normal messages are filtered, error messages are |
| 550 | not. |
| 551 | |
Bram Moolenaar | e0fa374 | 2016-02-20 15:47:01 +0100 | [diff] [blame] | 552 | *:sil* *:silent* *:silent!* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 553 | :sil[ent][!] {command} Execute {command} silently. Normal messages will not |
| 554 | be given or added to the message history. |
| 555 | When [!] is added, error messages will also be |
| 556 | skipped, and commands and mappings will not be aborted |
| 557 | when an error is detected. |v:errmsg| is still set. |
| 558 | When [!] is not used, an error message will cause |
| 559 | further messages to be displayed normally. |
| 560 | Redirection, started with |:redir|, will continue as |
| 561 | usual, although there might be small differences. |
| 562 | This will allow redirecting the output of a command |
| 563 | without seeing it on the screen. Example: > |
| 564 | :redir >/tmp/foobar |
| 565 | :silent g/Aap/p |
| 566 | :redir END |
| 567 | < To execute a Normal mode command silently, use the |
| 568 | |:normal| command. For example, to search for a |
| 569 | string without messages: > |
| 570 | :silent exe "normal /path\<CR>" |
| 571 | < ":silent!" is useful to execute a command that may |
| 572 | fail, but the failure is to be ignored. Example: > |
| 573 | :let v:errmsg = "" |
| 574 | :silent! /^begin |
| 575 | :if v:errmsg != "" |
| 576 | : ... pattern was not found |
| 577 | < ":silent" will also avoid the hit-enter prompt. When |
| 578 | using this for an external command, this may cause the |
| 579 | screen to be messed up. Use |CTRL-L| to clean it up |
| 580 | then. |
| 581 | ":silent menu ..." defines a menu that will not echo a |
| 582 | Command-line command. The command will still produce |
| 583 | messages though. Use ":silent" in the command itself |
| 584 | to avoid that: ":silent menu .... :silent command". |
| 585 | |
Bram Moolenaar | 8e258a4 | 2009-07-09 13:55:43 +0000 | [diff] [blame] | 586 | *:uns* *:unsilent* |
| 587 | :uns[ilent] {command} Execute {command} not silently. Only makes a |
| 588 | difference when |:silent| was used to get to this |
| 589 | command. |
| 590 | Use this for giving a message even when |:silent| was |
| 591 | used. In this example |:silent| is used to avoid the |
| 592 | message about reading the file and |:unsilent| to be |
| 593 | able to list the first line of each file. > |
| 594 | :silent argdo unsilent echo expand('%') . ": " . getline(1) |
| 595 | < |
| 596 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 597 | *:verb* *:verbose* |
| 598 | :[count]verb[ose] {command} |
| 599 | Execute {command} with 'verbose' set to [count]. If |
Bram Moolenaar | ed20346 | 2004-06-16 11:19:22 +0000 | [diff] [blame] | 600 | [count] is omitted one is used. ":0verbose" can be |
| 601 | used to set 'verbose' to zero. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 602 | The additional use of ":silent" makes messages |
| 603 | generated but not displayed. |
| 604 | The combination of ":silent" and ":verbose" can be |
| 605 | used to generate messages and check them with |
| 606 | |v:statusmsg| and friends. For example: > |
| 607 | :let v:statusmsg = "" |
| 608 | :silent verbose runtime foobar.vim |
| 609 | :if v:statusmsg != "" |
| 610 | : " foobar.vim could not be found |
| 611 | :endif |
| 612 | < When concatenating another command, the ":verbose" |
| 613 | only applies to the first one: > |
| 614 | :4verbose set verbose | set verbose |
| 615 | < verbose=4 ~ |
| 616 | verbose=0 ~ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 617 | For logging verbose messages in a file use the |
| 618 | 'verbosefile' option. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 619 | |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 620 | *:verbose-cmd* |
| 621 | When 'verbose' is non-zero, listing the value of a Vim option or a key map or |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 622 | an abbreviation or a user-defined function or a command or a highlight group |
| 623 | or an autocommand will also display where it was last defined. If it was |
| 624 | defined manually then there will be no "Last set" message. When it was |
| 625 | defined while executing a function, user command or autocommand, the script in |
| 626 | which it was defined is reported. |
Bram Moolenaar | db84e45 | 2010-08-15 13:50:43 +0200 | [diff] [blame] | 627 | {not available when compiled without the |+eval| feature} |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 628 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 629 | *K* |
| 630 | K Run a program to lookup the keyword under the |
| 631 | cursor. The name of the program is given with the |
| 632 | 'keywordprg' (kp) option (default is "man"). The |
| 633 | keyword is formed of letters, numbers and the |
| 634 | characters in 'iskeyword'. The keyword under or |
| 635 | right of the cursor is used. The same can be done |
| 636 | with the command > |
| 637 | :!{program} {keyword} |
| 638 | < There is an example of a program to use in the tools |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 639 | directory of Vim. It is called "ref" and does a |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 640 | simple spelling check. |
| 641 | Special cases: |
Bram Moolenaar | 2685212 | 2016-05-24 20:02:38 +0200 | [diff] [blame] | 642 | - If 'keywordprg' begins with ":" it is invoked as |
| 643 | a Vim Ex command with [count]. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 644 | - If 'keywordprg' is empty, the ":help" command is |
| 645 | used. It's a good idea to include more characters |
| 646 | in 'iskeyword' then, to be able to find more help. |
Bram Moolenaar | 2685212 | 2016-05-24 20:02:38 +0200 | [diff] [blame] | 647 | - When 'keywordprg' is equal to "man" or starts with |
| 648 | ":", a [count] before "K" is inserted after |
| 649 | keywordprg and before the keyword. For example, |
| 650 | using "2K" while the cursor is on "mkdir", results |
| 651 | in: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 652 | !man 2 mkdir |
| 653 | < - When 'keywordprg' is equal to "man -s", a count |
| 654 | before "K" is inserted after the "-s". If there is |
| 655 | no count, the "-s" is removed. |
| 656 | {not in Vi} |
| 657 | |
| 658 | *v_K* |
| 659 | {Visual}K Like "K", but use the visually highlighted text for |
| 660 | the keyword. Only works when the highlighted text is |
| 661 | not more than one line. {not in Vi} |
| 662 | |
| 663 | [N]gs *gs* *:sl* *:sleep* |
| 664 | :[N]sl[eep] [N] [m] Do nothing for [N] seconds. When [m] is included, |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 665 | sleep for [N] milliseconds. The count for "gs" always |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 666 | uses seconds. The default is one second. > |
| 667 | :sleep "sleep for one second |
| 668 | :5sleep "sleep for five seconds |
| 669 | :sleep 100m "sleep for a hundred milliseconds |
| 670 | 10gs "sleep for ten seconds |
| 671 | < Can be interrupted with CTRL-C (CTRL-Break on MS-DOS). |
Bram Moolenaar | 677ee68 | 2005-01-27 14:41:15 +0000 | [diff] [blame] | 672 | "gs" stands for "goto sleep". |
| 673 | While sleeping the cursor is positioned in the text, |
| 674 | if at a visible position. {not in Vi} |
Bram Moolenaar | 1514667 | 2011-10-20 22:22:38 +0200 | [diff] [blame] | 675 | Also process the received netbeans messages. {only |
| 676 | available when compiled with the |+netbeans_intg| |
| 677 | feature} |
| 678 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 679 | |
| 680 | *g_CTRL-A* |
| 681 | g CTRL-A Only when Vim was compiled with MEM_PROFILING defined |
| 682 | (which is very rare): print memory usage statistics. |
| 683 | Only useful for debugging Vim. |
Bram Moolenaar | 345efa0 | 2016-01-15 20:57:49 +0100 | [diff] [blame] | 684 | For incrementing in Visual mode see |v_g_CTRL-A|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 685 | |
| 686 | ============================================================================== |
Bram Moolenaar | 24ea3ba | 2010-09-19 19:01:21 +0200 | [diff] [blame] | 687 | 2. Using Vim like less or more *less* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 688 | |
| 689 | If you use the less or more program to view a file, you don't get syntax |
| 690 | highlighting. Thus you would like to use Vim instead. You can do this by |
| 691 | using the shell script "$VIMRUNTIME/macros/less.sh". |
| 692 | |
| 693 | This shell script uses the Vim script "$VIMRUNTIME/macros/less.vim". It sets |
| 694 | up mappings to simulate the commands that less supports. Otherwise, you can |
| 695 | still use the Vim commands. |
| 696 | |
| 697 | This isn't perfect. For example, when viewing a short file Vim will still use |
| 698 | the whole screen. But it works good enough for most uses, and you get syntax |
| 699 | highlighting. |
| 700 | |
| 701 | The "h" key will give you a short overview of the available commands. |
| 702 | |
Bram Moolenaar | e392eb4 | 2015-11-19 20:38:09 +0100 | [diff] [blame] | 703 | If you want to set options differently when using less, define the |
| 704 | LessInitFunc in your vimrc, for example: > |
| 705 | |
| 706 | func LessInitFunc() |
| 707 | set nocursorcolumn nocursorline |
| 708 | endfunc |
| 709 | < |
| 710 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 711 | vim:tw=78:ts=8:ft=help:norl: |