Vous êtes sur la page 1sur 2

///////////////////////// vi Reference | <string>. | (default current line and next).

- | :/[/] | To the next line containing an occurrence of


Warning: some vi versions don’t support the more esoteric features | the latest searched for item.
described in this document. You can edit/redistribute this document - | :?<string>[?] | To the previous line containing an occurrence ///////////////////////// changing text (end with <esc>)
freely, as long as you don’t make false claims on original authorship. | of <string>.
- | :?[?] | To the previous line containing an occurrence * | r<char> | Replace <*> chars by <char> - no <esc>.
Author: Maarten Litmaath <maart@nat.vu.nl> | of the latest searched for item. * | R | Overwrite the rest of the line,
Maintainer: James Hu <jxh@yahoo.com> - | :/<string>/+[n] | To n-th (default 1st) line after next occurrence | appending change <*> - 1 times.
Version: 11 | of <string>. * | s | Substitute <*> chars.
- | :?<string>?+[n] | Idem, searching in the opposite direction. * | S | <*> lines.
- | :/<string>/-[n] | To n-th (default 1st) line before next occurrence * | c<move> | Change from begin to endpoint of <*><move>.
///////////////////////// contributions | of <string>. * | cc | <*> lines.
- | :?<string>?-[n] | Idem, searching in the opposite direction. * | C | The rest of the line and <*> - 1 next lines.
Rich Salz <rsalz@bbn.com> - | :<find>[;<find>] | Perform successive ‘/’|‘?’ actions. Each <find> * | =<move> | If the option ‘lisp’ is set, this command
Eamonn McManus <emcmanus@cs.tcd.ie> | is of the form /<string/[+[n]] or | will realign the lines described by <*><move>
Diomidis Spinellis <diomidis%ecrcvax.uucp@pyramid.pyramid.com> | ?<string>?[+[n]]. | as though they had been typed with the option
Blair P. Houghton <bph@buengc.bu.edu> - | n | Repeat latest ‘/’|‘?’ (next). | ‘ai’ set too.
Rusty Haddock <{uunet,att,rutgers}!mimsy.umd.edu!fe2o3!rusty> - | N | Idem in opposite direction. - | ˜ | Switch lower and upper cases
Panos Tsirigotis <panos@boulder.colorado.edu> - | % | Find the next bracket and go to its match | (should be an operator, like ‘c’).
David J. MacKenzie <djm@wam.umd.edu> | (also with ‘{’|‘}’ and ‘[’|‘]’). * | J | Join <*> lines (default 2).
Kevin Carothers <kevin@ttidca.tti.com> - | :[x] | To the line specified by x. * | . | Repeat latest command <*> times (‘J’ only once).
Dan Mercer <mercer@ncrcce.StPaul.NCR.COM> - | :[x]+[n] | To n-th (default 1st) line after line specified - | & | Repeat latest ‘ex’ substitute command, e.g.
Ze’ev Shtadler <steed@il4cad.intel.com> | by x. | ‘:s/wrong/good’.
Paul Quare <pq@r2.cs.man.ac.uk> - | :[x]-[n] | To n-th (default 1st) line before line specified - | :[x,y]j | Join lines x through y
Dave Beyerl <att!ihlpl!db21> | by x. | (default current line and next).
Lee Sailer <UH2@psuvm.psu.edu> - | :[x,y]j! | Idem, but with no space inbetween.
David Gast <gast@cs.ucla.edu> - | :[x,y]m<l> | Move lines x through y (default current line)
John Arundel <john@splange.freeserve.co.uk> ///////////////////////// searching (see above) | to be after line <l>. See ‘remembering text’.
James Hu <jxh@cs.wustl.edu> - | :[x,y]s/<p>/<r>/<f>| Substitute (on lines x through y) the pattern <p>
In ‘:’ ‘ex’ commands, an ‘ex’ command that moves the cursor to a line of | (default the last pattern) with <r>. Useful
the file is a valid line number argument for commands that operate on | flags <f> are ‘g’ for ‘global’ (i.e. change
///////////////////////// legenda lines and line ranges. ‘.’ can be used as a synonym for the current | every non-overlapping occurrence of <p>) and
line. See also ‘writing, editing other files, and quitting vi’. | ‘c’ for ‘confirm’ (type ‘y’ to confirm a
default values : 1 | particular substitution, else <cr>). Instead
<*> : ‘*’ must not be taken literally :ta <name> | Search in the tags file[s] where <name> is | of ‘/’ any punctuation CHAR unequal to <lf>
[*] : ‘*’ is optional | defined (file, line), and go to it. | can be used as delimiter.
^X : <ctrl>X ^] | Use the name under the cursor in a ‘:ta’ command.
<sp> : space ^T | Pop the previous tag off the tagstack and return
<cr> : carriage return | to its position. ///////////////////////// substitute replacement patterns
<lf> : linefeed :[x,y]g/<string>/<cmd> | Search globally [from line x to y] for <string>
<ht> : horizontal tab | and execute the ‘ex’ <cmd> on each occurrence. The basic meta-characters for the replacement pattern are ‘&’
<esc> : escape | Multiple <cmd>’s are separated by ‘|’. and ‘˜’; these are given as ‘\&’ and ‘\˜’ when nomagic is set.
<erase> : your erase character :[x,y]g/<s1>/,/<s2>/<c> | Search globally [from line x to y] for <s1> and Each instance of ‘&’ is replaced by the characters which the
<kill> : your kill character | execute the ‘ex’ command <c> on each line regular expression matched. The meta-character ‘˜’ stands, in
<intr> : your interrupt character | between <s1> and the line that matches <s2>. the replacement pattern, for the defining text of the previous
<a-z> : an element in the range :[x,y]v/<string>/<cmd> | Execute <cmd> on the lines that don’t match. replacement pattern. Other meta-sequences possible in the
N : number (‘*’ = allowed, ‘-’ = not appropriate) replacement pattern are always introduced by the escaping character
CHAR : char unequal to <ht>|<sp> ‘\’. The sequence ‘\n’ (with ‘n’ in [1-9]) is replaced by the text
WORD : word followed by <ht>|<sp>|<lf> ///////////////////////// undoing changes matched by the n-th regular subexpression enclosed between ‘\(’ and
‘\)’. The sequences ‘\u’ and ‘\l’ cause the immediately following
u | Undo the latest change. character in the replacement to be converted to upper- or lower-case
///////////////////////// move commands U | Undo all changes on a line, while not having respectively if this character is a letter. The sequences ‘\U’
| moved off it (unfortunately). and ‘\L’ turn such conversion on, either until ‘\E’ or ‘\e’ is
N | Command | Meaning :u | Undo last substituion on line (only one) encountered, or until the end of the replacement pattern. See the
---+--------------------+----------------------------------------------- :q! | Quit vi without writing. ‘magic’ option for additional meta-characters. Some examples of
* | h | ^H | <erase> | <*> chars to the left. :e! | Re-edit a messed-up file. substitutions are shown below.
* | j | <lf> | ^N | <*> lines downward.
* | l | <sp> | <*> chars to the right. :s/foo/\u& - turn ‘foo’ into ‘Foo’
* | k | ^P | <*> lines upward. ///////////////////////// appending text (end with <esc>) :s/foo/\U& - turn ‘foo’ into ‘FOO’
* | $ | To the end of line <*> from the cursor. :s/\(foo\) \(bar\)/\U\1\E \u\2 - turn ‘foo bar’ into ‘FOO Bar’
- | ^ | To the first CHAR of the line. * | a | <*> times after the cursor. :s/foo/\u&/|s/bar/˜ - capitalize foo, then
* | _ | To the first CHAR <*> - 1 lines lower. * | A | <*> times at the end of line. capitalize bar
* | - | To the first CHAR <*> lines higher. * | i | <*> times before the cursor (insert).
* | + | <cr> | To the first CHAR <*> lines lower. * | I | <*> times before the first CHAR of the line
- | 0 | To the first char of the line. * | o | On a new line below the current (open). ///////////////////////// remembering text (yanking)
* | | | To column <*> (<ht>: only to the endpoint). | The count is only useful on a slow terminal.
* | f<char> | <*> <char>s to the right (find). * | O | On a new line above the current. With yank commands you can put ‘"<a-zA-Z>’ before the command, just
* | t<char> | Till before <*> <char>s to the right. | The count is only useful on a slow terminal. as with delete commands (see ‘deleting text’). Otherwise you only
* | F<char> | <*> <char>s to the left. * | ><move> | Shift the lines described by <*><move> one copy to the undo buffer. Using the capital letters appends to the
* | T<char> | Till after <*> <char>s to the left. | shiftwidth to the right. buffer. The use of buffers <a-z> is THE way of copying text to
* | ; | Repeat latest ‘f’|‘t’|‘F’|‘T’ <*> times. * | >> | Shift <*> lines one shiftwidth to the right. another file; see the ‘:e <file>’ command.
* | , | Idem in opposite direction. * | ["<a-zA-Z1-9>]p | Put the contents of the (default undo) buffer
* | w | <*> words forward. | <*> times after the cursor. * | y<move> | Yank from begin to endpoint of <*><move>.
* | W | <*> WORDS forward. | A buffer containing lines is put only once, * | yy | <*> lines.
* | b | <*> words backward. | below the current line. See ‘deleting text’. * | Y | Idem (should be equivalent to ‘y$’ though).
* | B | <*> WORDS backward. * | ["<a-zA-Z1-9>]P | Put the contents of the (default undo) buffer - | :[x,y]y<a-zA-Z> | Yank lines x through y into named buffer.
* | e | To the end of word <*> forward. | <*> times before the cursor. | Using the capital letter will append to the
* | E | To the end of WORD <*> forward. | A buffer containing lines is put only once, | buffer.
* | G | Go to line <*> (default EOF). | above the current line. See ‘deleting text’. - | m<a-z> | Mark the cursor position with a letter.
* | H | To line <*> from top of the screen (home). * | . | Repeat previous command <*> times. If the last - | :[x]k<a-z> | Mark line x (default current) with a letter.
* | L | To line <*> from bottom of the screen (last). | command before a ‘.’ command references a | The letter can be used to refer to the
- | M | To the middle line of the screen. | numbered buffer, the buffer number is | line in another ex command:
* | ) | <*> sentences forward. | incremented first (and the count is ignored): |
* | ( | <*> sentences backward. | | :/aaa/ka - mark next line matching aaa
* | } | <*> paragraphs forward. | "1pu.u.u.u.u - ‘walk through’ buffers 1 | :’a,’a+3d - delete that line and the three
* | { | <*> paragraphs backward. | through 5 | following it
- | ]] | To the next section (default EOF). | "1P.... - restore them | :?bbb?kb - mark previous line matching bbb
- | [[ | To the previous section (default begin of file). - | :[x,y]t<l> | Copy lines x through y (default current line) | :’bm. - move that line to be after current
- | ‘<a-z> | To the mark. | to be after line <l>. See ‘remembering text’. | line
- | ’<a-z> | To the first CHAR of the line with the mark.
- | ‘‘ | To the cursor position before the latest absolute
| jump (of which are examples ‘/’ and ‘G’). ///////////////////////// deleting text ///////////////////////// commands while in append|change mode
- | ’’ | To the first CHAR of the line on which the cursor
| was placed before the latest absolute jump. Everything deleted can be stored into a buffer. This is achieved ^@ | If typed as the first character of the
- | /<string>[/] | To the next occurrence of <string>. by putting a ‘"’ and a letter <a-z> before the delete command. The | insertion, it is replaced with the previous
- | /[/] | To the next occurrence of the latest search deleted text will be in the buffer with the used letter. If <A-Z> is | text inserted (max. 128 chars), after which
| item. used as buffer name, the conjugate buffer <a-z> will be augmented | the insertion is terminated.
- | ?<string>[?] | To the previous occurrence of <string>. (i.e., appended) instead of overwritten with the text. The undo ^V | Deprive the next char of its special meaning
- | ?[?] | To the previous occurrence of the latest search buffer always contains the latest change. Buffers <1-9> contain | (e.g. <esc>).
| item. the latest 9 LINE deletions (‘"1’ is most recent). See also ^D | One shiftwidth to the left, but only if
- | /<string>/+[n] | To n-th (default 1st) line after next occurrence ‘remembering text’. | nothing else has been typed on the line.
| of <string>. 0^D | Remove all indentation on the current line
- | ?<string>?+[n] | Idem, searching in the opposite direction. * | x | Delete <*> chars under and after the cursor. | (there must be no other chars on the line).
- | /<string>/-[n] | To n-th (default 1st) line before next occurrence * | X | <*> chars before the cursor. ^^D | Idem, but it is restored on the next line.
| of <string>. * | d<move> | From begin to endpoint of <*><move>. ^T | One shiftwidth to the right, but only if
- | ?<string>?-[n] | Idem, searching in the opposite direction. * | dd | <*> lines. | nothing else has been typed on the line.
- | <find>[;<find>] | Perform successive ‘/’|‘?’ actions. For example, - | D | The rest of the line. ^H | <erase> | One char back.
| /foo/;/bar - to next ‘foo’, then * | <<move> | Shift the lines described by <*><move> one ^W | One word back.
| to next ‘bar’ | shiftwidth to the left. <kill> | Back to the begin of the change on the
| ?foo?-;/bar - to line before previous * | << | Shift <*> lines one shiftwidth to the left. | current line.
| ‘foo’, then to next ‘bar’ * | . | Repeat latest command <*> times. <intr> | Like <esc> (but you get a beep as well).
- | :/<string>[/] | To the next line containing an occurrence of - | :[x,y]d | Delete lines x through y
:map! <string> <seq> | Mapping in append mode, e.g. :set <option>? | Show <option>’s value.
///////////////////////// writing, editing other files, and quitting vi | ‘:map! \be begin^V<cr>end;^V<esc>O<ht>’. :set all | Show all options and their values.
| When in append mode <string> is preceded by
In ‘:’ ‘ex’ commands - if not the first CHAR on the line - ‘%’ denotes | ‘^V’, no mapping is done.
the current file, ‘#’ is a synonym for the alternate file (which :map! | Show all append mode mappings. ///////////////////////// the most important options
normally is the previous file). As first CHAR on the line ‘%’ is a :unmap! <string> | Deprive <string> of its mapping (see ‘:unmap’).
shorthand for ‘1,$’. Marks can be used for line numbers too: ’<a-z>. :ab <string> <seq> | Whenever in append mode <string> is preceded and ai | autoindent - In append mode after a <cr> the
In the ‘:w’|‘:f’|‘:cd’|‘:e’|‘:n’ commands shell meta-characters can be | followed by a breakpoint (e.g. <sp> or ‘,’), it | cursor will move directly below the first
used. | is interpreted as <seq>, e.g. | CHAR on the previous line. However, if the
| ‘:ab ^P procedure’. A ‘^V’ immediately | option ‘lisp’ is set, the cursor will align
:q | Quit vi, unless the buffer has been changed. | following <string> inhibits expansion. | at the first argument to the last open list.
:q! | Quit vi without writing. :ab | Show all abbreviations. aw | autowrite - Write at every shell escape
^Z | Suspend vi. :unab <string> | Do not consider <string> an abbreviation | (useful when compiling from within vi).
:w | Write the file. | anymore (see ‘:unmap’). dir=<string> | directory - The directory for vi to make
:w <name> | Write to the file <name>. @<a-z> | Consider the contents of the named register a | temporary files (default ‘/tmp’).
:w >> <name> | Append the buffer to the file <name>. | command, e.g.: eb | errorbells - Beeps when you goof
:w! <name> | Overwrite the file <name>. | o0^D:s/wrong/good/<esc>"zdd | (not on every terminal).
:x,y w <name> | Write lines x through y to the file <name>. | Explanation: ic | ignorecase - No distinction between upper and
:wq | Write the file and quit vi; some versions quit | o - open a new line | lower cases when searching.
| even if the write was unsuccessful! | 0^D - remove indentation lisp | Redefine the following commands:
| Use ‘ZZ’ instead. | :s/wrong/good/ - this input text is an | ‘(’, ‘)’ - move backward (forward) over
ZZ | Write if the buffer has been changed, and | ‘ex’ substitute command | S-expressions
| quit vi. If you have invoked vi with the ‘-r’ | <esc> - finish the input | ‘{’, ‘}’ - idem, but don’t stop at atoms
| option, you’d better write the file | "zdd - delete the line just | ‘[[’, ‘]]’ - go to previous (next) line
| explicitly (‘w’ or ‘w!’), or quit the | created into register ‘z’ | beginning with a ‘(’
| editor explicitly (‘q!’) if you don’t want | Now you can type ‘@z’ to replace ‘wrong’ | See option ‘ai’.
| to overwrite the file - some versions of vi | with ‘good’ on the current line. list | <lf> is shown as ‘$’, <ht> as ‘^I’.
| don’t handle the ‘recover’ option very well. @@ | Repeat last register command. magic | If this option is set (default), the chars ‘.’,
:x [<file>] | Idem [but write to <file>]. | ‘[’ and ‘*’ have special meanings within search
:x! [<file>] | ‘:w![<file>]’ and ‘:q’. | and ‘ex’ substitute commands. To deprive such
:pre | Preserve the file - the buffer is saved as if ///////////////////////// switch and shell commands | a char of its special function it must be
| the system had just crashed; for emergencies, | preceded by a ‘\’. If the option is turned off
| when a ‘:w’ command has failed and you don’t Q | ^\ | <intr><intr> | Switch from vi to ‘ex’. | it’s just the other way around. Meta-chars:
| know how to save your work (see ‘vi -r’). : | An ‘ex’ command can be given. | ^<string> - <string> must begin the line
:f <name> | Set the current filename to <name>. :vi | Switch from ‘ex’ to vi. | <string>$ - <string> must end the line
:cd [<dir>] | Set the working directory to <dir> :sh | Execute a subshell, back to vi by ‘^D’. | . - matches any char
| (default home directory). :[x,y]!<cmd> | Execute a shell <cmd> [on lines x through y; | [a-z] - matches any char in the range
:cd! [<dir>] | Idem, but don’t save changes. | these lines will serve as input for <cmd> and | [^a-z] - any char not in the range
:e [+<cmd>] <file> | Edit another file without quitting vi - the | will be replaced by its standard output]. | [<string>] - matches any char in <string>
| buffers are not changed (except the undo :[x,y]!! [<args>] | Repeat last shell command [and append <args>]. | [^<string>] - any char not in <string>
| buffer), so text can be copied from one file to :[x,y]!<cmd> ! [<args>] | Use the previous command (the second ‘!’) in a | <char>* - 0 or more <char>s
| another this way. [Execute the ‘ex’ command | new command. | \<<string> - <string> must begin a word
| <cmd> (default ‘$’) when the new file has been [*]!<move><cmd> | The shell executes <cmd>, with as standard | <string>\> - <string> must end a word
| read into the buffer.] <cmd> must contain no | input the lines described by <*><move>, modeline | When you read an existing file into the buffer,
| <sp> or <ht>. See ‘vi startup’. | next the standard output replaces those lines | and this option is set, the first and last 5
:e! [+<cmd>] <file> | Idem, without writing the current buffer. | (think of ‘cb’, ‘sort’, ‘nroff’, etc.). | lines are checked for editing commands in the
^^ | Edit the alternate (normally the previous) file. [*]!<move>!<args> | Append <args> to the last <cmd> and execute it, | following form:
:rew | Rewind the argument list, edit the first file. | using the lines described by the current |
:rew! | Idem, without writing the current buffer. | <*><move>. | <sp>vi:set options|map ...|ab ...|!...:
:n [+<cmd>] [<files>] | Edit next file or specify a new argument list. [*]!!<cmd> | Give <*> lines as standard input to the |
:n! [+<cmd>] [<files>] | Idem, without writing the current buffer. | shell <cmd>, next let the standard output | Instead of <sp> a <ht> can be used, instead of
:args | Give the argument list, with the current file | replace those lines. | ‘vi’ there can be ‘ex’. Warning: this option
| between ‘[’ and ‘]’. [*]!!! [<args>] | Use the previous <cmd> [and append <args> to it]. | could have nasty results if you edit a file
:x,y w !<cmd> | Let lines x to y be standard input for <cmd> | containing ‘strange’ modelines.
| (notice the <sp> between the ‘w’ and the ‘!’). nu | number - Numbers before the lines.
///////////////////////// display commands :r!<cmd> | Put the output of <cmd> onto a new line. para=<string> | paragraphs - Every pair of chars in <string> is
:r <name> | Read the file <name> into the buffer. | considered a paragraph delimiter nroff macro
^G | Give file name, status, current line number | (for ‘{’ and ‘}’). A <sp> preceded by a ‘\’
| and relative position. | indicates the previous char is a single letter
^L | Refresh the screen (sometimes ‘^P’ or ‘^R’). ///////////////////////// vi startup | macro. ‘:set para=P\ bp’ introduces ‘.P’ and
^R | Sometimes vi replaces a deleted line by a ‘@’, | ‘.bp’ as paragraph delimiters. Empty lines and
| to be deleted by ‘^R’ (see option ‘redraw’). vi [<files>] | Edit the files, start with the first page of | section boundaries are paragraph boundaries
[*]^E | Expose <*> more lines at bottom, cursor | the first file. | too.
| stays put (if possible). redraw | The screen remains up to date.
[*]^Y | Expose <*> more lines at top, cursor The editor can be initialized by the shell variable ‘EXINIT’, which remap | If on (default), macros are repeatedly
| stays put (if possible). looks like: | expanded until they are unchanged.
[*]^D | Scroll <*> lines downward | Example: if ‘o’ is mapped to ‘A’, and ‘A’
| (default the number of the previous scroll; EXINIT=’<cmd>|<cmd>|...’ | is mapped to ‘I’, then ‘o’ will map to ‘I’
| initialization: half a page). <cmd>: set options | if ‘remap’ is set, else it will map to ‘A’.
[*]^U | Scroll <*> lines upward map ... report=<*> | Vi reports whenever e.g. a delete
| (default the number of the previous scroll; ab ... | or yank command affects <*> or more lines.
| initialization: half a page). export EXINIT (in the Bourne shell) ro | readonly - The file is not to be changed.
[*]^F | <*> pages forward. | However, ‘:w!’ will override this option.
[*]^B | <*> pages backward (in older versions ‘^B’ only However, the list of initializations can also be put into a file. sect=<string> | sections - Gives the section delimiters (for ‘[[’
| works without count). If this file is located in your home directory, and is named ‘.exrc’ | and ‘]]’); see option ‘para’. A ‘{’ beginning a
:[x,y]l | List lines x through y (default current), AND the variable ‘EXINIT’ is NOT set, the list will be executed | line also starts a section (as in C functions).
| making invisible characters visible. automatically at startup time. However, vi will always execute the sh=<string> | shell - The program to be used for shell escapes
:[x,y]p | Print lines x through y (default current). contents of a ‘.exrc’ in the current directory, if you own the file. | (default ‘$SHELL’ (default ‘/bin/sh’)).
:[x,y]nu | List lines x through y (default current), Else you have to give the execute (‘source’) command yourself: sw=<*> | shiftwidth - Gives the shiftwidth (default 8
| with line numbers next to each line. | positions).
:so file sm | showmatch - Whenever you append a ‘)’, vi shows
If in the next commands the field <wi> is present, the windowsize | its match if it’s on the same page; also with
will change to <wi>. The window will always be displayed at the In a ‘.exrc’ file a comment is introduced with a double quote character: | ‘{’ and ‘}’. If there’s no match at all, vi
bottom of the screen. the rest of the line is ignored. Exception: if the last command on the | will beep.
line is a ‘map[!]’ or ‘ab’ command or a shell escape, a trailing comment taglength=<*> | The number of significant characters in tags
[*]z[wi]<cr> | Put line <*> at the top of the window is not recognized, but considered part of the command. | (0 = unlimited).
| (default the current line). tags=<string> | The space-separated list of tags files.
[*]z[wi]+ | Put line <*> at the top of the window On-line initializations can be given with ‘vi +<cmd> file’, e.g.: terse | Short error messages.
| (default the first line of the next page). to | timeout - If this option is set, append mode
[*]z[wi]- | Put line <*> at the bottom of the window vi +x file | The cursor will immediately jump to line x | mappings will be interpreted only if they’re
| (default the current line). | (default last line). | typed fast enough.
[*]z[wi]^ | Put line <*> at the bottom of the window vi +/<string> file | Jump to the first occurrence of <string>. ts=<*> | tabstop - The length of a <ht>; warning: this is
| (default the last line of the previous page). | only IN the editor, outside of it <ht>s have
[*]z[wi]. | Put line <*> in the centre of the window You can start at a particular tag with: | their normal length (default 8 positions).
| (default the current line). wa | writeany - No checks when writing (dangerous).
vi -t <tag> | Start in the right file in the right place. warn | Warn you when you try to quit without writing.
wi=<*> | window - The default number of lines vi shows.
///////////////////////// mapping and abbreviation Sometimes (e.g. if the system crashed while you were editing) it is wm=<*> | wrapmargin - In append mode vi automatically
possible to recover files lost in the editor by ‘vi -r file’. A plain | puts a <lf> whenever there is a <sp> or <ht>
When mapping take a look at the options ‘to’ and ‘remap’ (below). ‘vi -r’ command shows the files you can recover. | within <wm> columns from the right margin
If you just want to view a file by using vi, and you want to avoid any | (0 = don’t put a <lf> in the file, yet put it
:map <string> <seq> | <string> is interpreted as <seq>, e.g. change, instead of vi you can use the ‘view’ or ‘vi -R’ command: | on the screen).
| ‘:map ^C :!cc %^V<cr>’ to invoke ‘cc’ (the C the option ‘readonly’ will be set automatically (with ‘:w!’ you can ws | wrapscan - When searching, the end is
| compiler) from within the editor override this option). | considered ‘stuck’ to the begin of the file.
| (vi replaces ‘%’ with the current file name).
:map | Show all mappings.
:unmap <string> | Deprive <string> of its mapping. When vi ///////////////////////// changing and viewing options
| complains about non-mapped macros (whereas no
| typos have been made), first do something like :set <option> | Turn <option> on.
| ‘:map <string> Z’, followed by :set no<option> | Turn <option> off.
| ‘:unmap <string>’ (‘Z’ must not be a macro :set <option>=<value> | Set <option> to <value>.
| itself), or switch to ‘ex’ mode first with ‘Q’. :set | Show all non-default options and their values.

Vous aimerez peut-être aussi