home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / info / viper-3 (.txt) < prev    next >
GNU Info File  |  1997-09-17  |  50KB  |  984 lines

  1. This is Info file ../info/viper, produced by Makeinfo-1.63 from the
  2. input file viper.texi.
  3. Distribution
  4. ************
  5. Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  6.    Permission is granted to make and distribute verbatim copies of this
  7. manual provided the copyright notice and this permission notice are
  8. preserved on all copies.
  9.    Permission is granted to copy and distribute modified versions of
  10. this manual under the conditions for verbatim copying, provided that
  11. the entire resulting derived work is distributed under the terms of a
  12. permission notice identical to this one.
  13.    Permission is granted to copy and distribute translations of this
  14. manual into another language, under the same conditions as for modified
  15. versions.
  16. File: viper,  Node: Viper Specials,  Next: Vi Macros,  Prev: Packages that Change Keymaps,  Up: Customization
  17. Viper Specials
  18. ==============
  19.    Viper extends Vi with a number of useful features. This includes
  20. various search functions, histories of search strings, Ex commands,
  21. insertions, and Vi's destructive commands. In addition, Viper supports
  22. file name completion and history, completion of Ex commands and
  23. variables, and many other features. Some of these features are
  24. explained in detail elsewhere in this document. Other features are
  25. explained here.
  26. `(vip-buffer-search-enable)'
  27. `vip-buffer-search-char nil'
  28.      Enable buffer search. Explicit call to `vip-buffer-search-enable'
  29.      sets `vip-buffer-search-char' to `g'. Alternatively, the user can
  30.      set `vip-buffer-search-char' in `.vip' to a key sequence to be
  31.      used for buffer search. There is no need to call
  32.      `vip-buffer-search-enable' in that case.
  33. `vip-toggle-search-style'
  34.      This function, bound to `C-c /', lets one toggle case-sensitive and
  35.      case-insensitive search, and also switch between plain vanilla
  36.      search and search via regular expressions. Without the prefix
  37.      argument, the user is asked which mode to toggle. With prefix
  38.      argument 1, this toggles case-sensitivity. With prefix argument 2,
  39.      regular expression/vanilla search will be toggled.
  40.      However, we found that the most convenient way to toggle these
  41.      options is to bind a Vi macro to bind `//' to toggles case
  42.      sensitivity and to `///' to toggles vanilla search. Thus, quickly
  43.      hitting `/' twice will switch Viper from case sensitive search to
  44.      case-insensitive. Repeating this once again will restore the
  45.      original state. Likewise, quickly hitting `/' three times will
  46.      switch you from vanilla-style search to search via regular
  47.      expressions.  If you hit something other than `/' after the first
  48.      `/' or if the second `/' doesn't follow quickly enough, then Viper
  49.      will issue the usual prompt `/' and will wait for input, as usual
  50.      in Vi.  If you don't like this behavior, you can "unrecord" these
  51.      macros in your `~/.vip' file. For instance, if u don't like the
  52.      above feature, put this in `~/.vip':
  53.           (vip-unrecord-kbd-macro "//" 'vi-state)
  54.           (vip-unrecord-kbd-macro "///" 'vi-state)
  55.      *Note Vi Macros::, for more information on Vi macros.
  56. `vip-heading-start'
  57. `vip-heading-end'
  58.      Regular Expressions for `[[' and `]]'. Note that Emacs defines
  59.      Regexps for paragraphs and sentences. *Note Paragraphs and
  60.      Sentences: (emacs)Paragraphs, for details.
  61. `M-x vip-set-expert-level'
  62.      Change your user level interactively.
  63. `vip-smart-suffix-list  '("" "tex" "c" "cc" "el" "p")'
  64.      Viper supports Emacs-style file completion when it prompts the
  65.      user for a file name. However, in many cases, the same directory
  66.      may contain files with identical prefix but different suffixes,
  67.      e.g., prog.c, prog.o, paper.tex, paper.dvi. In such cases,
  68.      completion will stop at the `.'.  If the above variable is a list
  69.      of strings representing suffixes, Viper will try these suffixes in
  70.      the order listed and will check if the corresponding file exists.
  71.      For instance, if completion stopped at `paper.' and the user typed
  72.      RET, then Viper will check if the files `paper.', `paper.tex',
  73.      `paper.c', etc., exist.  It will take the first such file. If no
  74.      file exists, Viper will give a chance to complete the file name by
  75.      typing the appropriate suffix. If `paper.' was the intended file
  76.      name, hitting return will accept it.
  77.      To turn this feature off, set the above variable to `nil'.
  78. `vip-insertion-ring-size  14'
  79.      Viper remembers what was previously inserted in Insert and Replace
  80.      states.  Several such recent insertions are kept in a special ring
  81.      of strings of size `vip-insertion-ring-size'.  If you enter Insert
  82.      or Replace state you can reinsert strings from this ring by typing
  83.      `C-c M-p' or `C-c M-n'. The former will search the ring in the
  84.      direction of older insertions, and the latter will search in the
  85.      direction of newer insertions. Hitting `C-c M-p' or `C-c M-n' in
  86.      succession will undo the previous insertion from the ring and
  87.      insert the next item on the ring. If a larger ring size is needed,
  88.      change the value of the above variable in the `~/.vip' file.
  89.      Since typing these sequences of keys may be tedious, it is
  90.      suggested that the user should bind a function key, such as `f31',
  91.      as follows:
  92.           (define-key vip-insert-global-user-map [f31]
  93.                       'vip-insert-prev-from-insertion-ring)
  94.      This binds `f31' (which is usually `R11' on a Sun workstation) to
  95.      the function that inserts the previous string in the insertion
  96.      history.  To rotate the history in the opposite direction, you can
  97.      either bind an unused key to `vip-insert-next-from-insertion-ring'
  98.      or hit any digit (1 to 9) then `f31'.
  99.      One should not bind the above functions to `M-p' or `M-n', since
  100.      this will interfere with the Minibuffer histories and, possibly,
  101.      other major modes.
  102. `vip-command-ring-size  14'
  103.      Viper keeps track of the recent history of destructive commands,
  104.      such as `dw', `i', etc.  In Vi state, the most recent command can
  105.      be re-executed by hitting ``.'', as in Vi.  However, repeated
  106.      typing `C-c M-p' will cause Viper to show the previous destructive
  107.      commands in the minibuffer. Subsequent hitting ``.'' will execute
  108.      the command that was displayed last.  The key `C-c M-n' will cycle
  109.      through the command history in the opposite direction.  Since
  110.      typing `C-c M-p' may be tedious, it is more convenient to bind an
  111.      appropriate function to an unused function key on the keyboard and
  112.      use that key. For instance, the following
  113.           (define-key vip-vi-global-user-map [f31]
  114.                       'vip-prev-destructive-command)
  115.      binds the key `f31' (which is usually `R11' on a Sun workstation)
  116.      to the function that searches the command history in the direction
  117.      of older commands. To search in the opposite direction, you can
  118.      either bind an unused key to `vip-next-destructive-command' or hit
  119.      any digit (1 to 9) then `f31'.
  120.      One should not bind the above functions to `M-p' or `M-n', since
  121.      this will interfere with the Minibuffer histories and, possibly,
  122.      other major modes.
  123. `vip-minibuffer-vi-face  'vip-minibuffer-vi-face'
  124. `vip-minibuffer-insert-face  'vip-minibuffer-insert-face'
  125. `vip-minibuffer-emacs-face  'vip-minibuffer-emacs-face'
  126.      These faces control the appearance of the minibuffer text in the
  127.      corresponding Viper states. For heavy-duty customization, consult
  128.      the Lisp Reference to Emacs. You can also take a look how these
  129.      faces are defined in `viper.el'.
  130.      However, on a color workstation, the following method usually
  131.      suffices:
  132.           (set-face-foreground vip-minibuffer-vi-face "blue")
  133.           (set-face-background vip-minibuffer-emacs-face "orchid")
  134.      This will make a blue foreground in the Minibuffer when it is in Vi
  135.      state; its background will turn to orchid when it switches to
  136.      Emacs state.
  137.      Note that only the text you type in is affected by the above faces.
  138.      Prompts and Minibuffer messages are not affected.
  139.      Purists who do not like adornments in the minibuffer can always
  140.      zap them by putting
  141.           (copy-face 'default 'vip-minibuffer-vi-face)
  142.           (copy-face 'default 'vip-minibuffer-insert-face)
  143.           (copy-face 'default 'vip-minibuffer-emacs-face)
  144.      in the `~/.vip' file. However, in that case, the user will not
  145.      have any indication of the current Viper state in the minibuffer.
  146.      (This is important if the user accidentally switches to another
  147.      Viper state by typing `ESC' or `C-z'.
  148.    Viper provides some support for multi-file documents and programs.
  149. If a document consists of several files we can designate one of them as
  150. a master and put the following at the end of that file:
  151.      ;;; Local Variables:
  152.      ;;; eval: (vip-setup-master-buffer "file1" "file2" "file3" "file5" "file5")
  153.      ;;; End:
  154. where `file1' to `file5' are names of files related to the master file.
  155. Next time, when the master file is visited, the command
  156. `vip-setup-master-buffer' will be evaluated and the above files will be
  157. associated with the master file. Then, the new Ex command
  158. `:RelatedFile' (abbr. `:R') will display files 1 to 5 one after
  159. another, so you can edit them. If a file is not in any Emacs buffer, it
  160. will be visited.  The command `PreviousRelatedFile' (abbr., `:P') goes
  161. through the file list in the opposite direction.
  162.    These commands are akin to `:n' and `:N', but they allow the user to
  163. focus on relevant files only.
  164.    Note that only the master file needs to have the aforementioned
  165. block of commands. Also, ";;;" above can be replaced by some other
  166. markers. Semicolon is good for Lisp programs, since it is considered a
  167. comment designator there. For LaTeX, this could be "%%%", and for C the
  168. above block should be commented out.
  169.    Even though these commands are sometimes useful, they are no
  170. substitute for the powerful *tag table* facility of Emacs. Viper's
  171. `:tag' command in a primitive interface to Emacs tags. *Note Tags:
  172. (emacs)Tags, for more information on tags.
  173.    The following two commands are normally bound to a mouse click and
  174. are part of Viper. They work only if Emacs runs as an application under
  175. X Windows (or under some other window system for which a port of Emacs
  176. 19 is available). Clicking the mouse when Emacs is invoked in an Xterm
  177. window (using `emacs -nw') will do no good.
  178. `M-S-mouse-1 (Emacs)'
  179. `meta shift button1up (XEmacs)'
  180.      Holding Meta and Shift while clicking mouse button 1 will initiate
  181.      search for a region under the mouse pointer (defined below).  This
  182.      command can take a prefix argument, which indicates the occurrence
  183.      of the pattern to search for.
  184.      Note: Viper binds this mouse action only if it is not already
  185.      bound to something else. If you want to use this feature and
  186.      `M-S-mouse-1' is already used for something else, you can rebind
  187.      mouse-search as, for example, in the following example:
  188.           (global-set-key [M-mouse-1] 'vip-mouse-click-search-word)
  189.           (global-set-key [M-down-mouse-1] 'vip-mouse-catch-frame-switch)
  190.      This would bind mouse search to the action invoked by pressing the
  191.      Meta key and clicking mouse button 1. Note: if
  192.      `vip-mouse-click-search-word' is bound to an action, then
  193.      `vip-mouse-catch-frame-switch' must be bound to a down-action, as
  194.      shown in the above example.
  195.      In XEmacs, you can change bindings as follows:
  196.           (global-set-key [(meta control button1up)]
  197.                           'vip-mouse-click-search-word)
  198.           (global-set-key [(meta control button1)]
  199.                           'vip-mouse-catch-frame-switch)
  200.      if, say, you prefer to hold both meta and control while clicking.
  201.      Like in Emacs, there are special rules for binding these
  202.      functions: the first must be bound to a button-up event while the
  203.      second must be bound to a button-event (which is XEmacs'
  204.      equivalent of a down-mouse event).  Also, in Emacs, the
  205.      double-click and triple-click actions for the same button
  206.      (`double-S-mouse-1', etc., if the above default binding is used)
  207.      should not be bound (or it should be bound to the same function,
  208.      `vip-mouse-click-search-word').
  209.      The region that is chosen as a pattern to search for is determined
  210.      as follows. If search is invoked via a single click, Viper chooses
  211.      the region that lies between the beginning of the "word" under the
  212.      pointer ("word" is understood in Vi sense) and the end of that
  213.      word.  The only difference with Vi's words is that in Lisp major
  214.      modes `-' is considered an alphanumeric symbol. This is done for
  215.      the convenience of working with Lisp symbols, which often have an
  216.      `-' in them.  Also, if you click on a non-alphanumeric character
  217.      that is not a word separator (in Vi sense) then this character
  218.      will also be considered alphanumeric, provided that it is adjacent
  219.      (from either side) to an alphanumeric character.  This useful
  220.      feature gives added control over the patterns selected by the
  221.      mouse click.
  222.      On a double-click, the region is determined by the beginning of
  223.      the current Vi's "Word" (i.e., the largest non-separator chunk of
  224.      text) and the End of that "Word" (as determined by the `E'
  225.      command).
  226.      On a triple-click, the region consists of the entire line where
  227.      the click occurred with all leading and trailing spaces and tabs
  228.      removed.
  229. `M-S-mouse-2 (Emacs)'
  230. `meta shift button2up (XEmacs)'
  231.      Holding Meta and Shift while clicking mouse button 2 will insert
  232.      the region surrounding the mouse pointer.  The rules defining this
  233.      region are the same as for mouse-search.  This command takes an
  234.      optional prefix argument, which indicates how many such regions to
  235.      snarf from the buffer and insert.  (In case of a triple-click, the
  236.      prefix argument is ignored.)
  237.      Note: Viper binds this mouse action only if it not already bound to
  238.      something else. If you want to use this feature and `S-mouse-2' is
  239.      already used for something else, you can rebind mouse-insert as
  240.      follows:
  241.           (global-set-key [M-mouse-2] 'vip-mouse-click-insert-word)
  242.           (global-set-key [M-down-mouse-2] 'vip-mouse-catch-frame-switch)
  243.      In XEmacs, you can change the bindings as follows:
  244.           (global-set-key [(meta control button2up)]
  245.                           'vip-mouse-click-insert-word)
  246.           (global-set-key [(meta control button2)]
  247.                           'vip-mouse-catch-frame-switch)
  248. `vip-multiclick-timeout'
  249.      This variable controls the rate at which double-clicking must
  250.      occur for the purpose of mouse search and mouse insert. By
  251.      default, this is set to `double-click-time' in Emacs and to
  252.      `mouse-track-multi-click-time' milliseconds in XEmacs.
  253.    Note: The above functions search and insert in the selected window of
  254. the latest active frame. This means that you can click in another
  255. window or another frame and have search or insertion done in the frame
  256. and window you just left.  This lets one use these functions in a
  257. multi-frame configuration.  However, this may require some getting used
  258. to. For instance, if you are typing in a frame, A, and then move the
  259. mouse to frame B and click to invoke mouse search, search (or
  260. insertion) will be performed in frame A. To perform search/insertion in
  261. frame B, you will first have to shift focus there, which doesn't happen
  262. until you type a character or perform some other action in frame
  263. B--mouse search doesn't shift focus (in XEmacs, to shift focus to frame
  264. B, you will have to select this frame with a mouse, by clicking.
  265.    If you decide that you don't like the above feature and always want
  266. search/insertion be performed in the frame where the click occurs, don't
  267. bind (and unbind, if necessary) `vip-mouse-catch-frame-switch' from the
  268. mouse event it is bound to.
  269.    Mouse search is integrated with Vi-style search, so you can repeat
  270. it with `n' and `N'. It should be also noted that, while
  271. case-sensitivity of search in Viper is controlled by the variable
  272. `vip-case-fold-search', the case of mouse search is controlled by the
  273. Emacs variable `case-fold-search', which may be set differently from
  274. `vip-case-fold-search'. Therefore, case-sensitivity of mouse search may
  275. be different from that of the usual Vi-style search.
  276.    Finally, if the way Viper determines the word to be searched for or
  277. to be inserted is not what you want, there is a variable,
  278. `vip-surrounding-word-function', which can be changed to indicate
  279. another function for snarfing words out of the buffer. The catch is that
  280. you will then have to write such a function and make it known to your
  281. Emacs. The function `vip-surrounding-word' in `viper.el' can be used as
  282. a guiding example.
  283. File: viper,  Node: Vi Macros,  Prev: Viper Specials,  Up: Customization
  284. Vi Macros
  285. =========
  286.    Viper supports much enhanced Vi-style macros and also facilitates
  287. the use of Emacs-style macros.  To define a temporary macro, it is
  288. generally more convenient to use Emacs keyboard macro facility. Emacs
  289. keyboard macros are usually defined anonymously, and the latest macro
  290. can be executed by typing `C-x e' (or `*', if Viper is in Vi state). If
  291. you need to use several temporary macros, Viper lets you save them to a
  292. register (a lowercase letter); such macros can then be executed by
  293. typing `@a' in Vi state (if a macro was previously saved in register
  294. `a').  *Note Macros and Registers::, for details.
  295.    If, however, you need to use a macro regularly, it must be given a
  296. permanent name and saved. Emacs manual explains how to do this, but
  297. invocation of named Emacs macros is quite different from Vi's. First,
  298. invocation of permanent Emacs macros takes time because of the extra
  299. keys.  Second, binding such macros to function keys, for fast access,
  300. hogs valuable real estate on the keyboard.
  301.    Vi-style macros are better in that respect, since Vi lets the user
  302. overload the meaning of key sequences: keys typed in fast succession
  303. are treated specially, if this key sequence is bound to a macro.
  304.    Viper provides keyboard macros through the usual Ex commands, `:map'
  305. and `:map!'. Vi-style macros are much more powerful in Viper than they
  306. are in the original Vi and in other emulators. This is because Viper
  307. implements an enhanced vi-style interface to the powerful Emacs
  308. keyboard macro facility.
  309.    First, any Emacs command can be executed while defining a macro, not
  310. just the Vi commands. In particular, the user can invoke Emacs commands
  311. via `M-x command-name' or by pressing various function keys on the
  312. keyboard. One can even use the mouse, although this is usually not
  313. useful and is not recommended (and macros defined with the use of the
  314. mouse cannot be saved in command history and in the startup file, for
  315. future use).
  316.    Macros defined by mixing Vi and Emacs commands are represented as
  317. vectors. So, don't be confused when you see one (usually through the
  318. history of Ex commands). For instance, if `gg' is defined by typing
  319. `l', the up-arrow key and `M-x next-line', its definition will look as
  320. follows in Emacs (in XEmacs, it looks slightly different, see below):
  321.      [l up (meta x) n e x t - l i n e return]
  322.    Second, Viper macros are defined in a WYSIWYG style. This means that
  323. commands are executed as you type them, so you can see precisely what is
  324. being defined.  Third, macros can be bound to arbitrary sequences of
  325. keys, not just to printable keys. For instance, one can define a macro
  326. that will be invoked by hitting `f3' then `f2' function keys. (The keys
  327. `delete' and `backspace' are excluded; also, a macro invocation
  328. sequence can't start with ESC. Some other keys, such as `f1' and
  329. `help', can't be bound to macros under Emacs (not XEmacs), since they
  330. are bound in `key-translation-map', which overrides any other binding
  331. the user gives to keys. In general, keys that have a binding in
  332. `key-translation-map' can't be bound to a macro.)
  333.    Fourth, in Viper, one can define macros that are specific to a given
  334. buffer, a given major mode, or macros that are defined for all buffers.
  335. In fact, the same macro name can have several different definitions:
  336. one global, several definitions for various major modes, and
  337. definitions for various specific buffers. Buffer-specific definitions
  338. override mode-specific definitions, which, in turn, override global
  339. definitions.
  340.    As if all that is not enough, Viper (through its interface to Emacs
  341. macros) lets the user define keyboard macros that ask for confirmation
  342. or even prompt the user for input and then continue. To do this, one
  343. should type `C-x q' (for confirmation) or `C-u C-x q' (for prompt).
  344. For details, *note Customization: (emacs)Kbd Macro Query.
  345.    When the user finishes defining a macro (which is done by typing
  346. `C-x)' -- a departure from Vi), you will be asked whether you want this
  347. macro to be global, mode-specific, or buffer-specific. You will also be
  348. given a chance to save the macro in your `~/.vip' file.  This is the
  349. easiest way to save a macro and make it permanently available. If you
  350. work your startup files with bare hands, here is how Viper saves the
  351. above macro so that it will be available in Viper's Insert state (and
  352. Replace state) in buffer `my-buf' only:
  353.       (vip-record-kbd-macro "gg" 'insert-state
  354.              [l up (meta x) n e x t - l i n e return]
  355.              "my-buf")
  356. To do the same for Vi state and all buffers with the major mode
  357. `cc-mode', use:
  358.       (vip-record-kbd-macro "gg" 'vi-state
  359.              [l up (meta x) n e x t - l i n e return]
  360.              'cc-mode)
  361. Both macro names and macro definitions are vectors of symbols that
  362. denote keys on the keyboard. Some keys, like `\', ` ', or digit-keys
  363. must be escaped with a backslash. Modified keys are represented as
  364. lists. For instance, holding Meta and Control and pressing `f4' is
  365. represented as `(control meta f4)'.  If all members of a vectors are
  366. printable characters (or sequences, such as `\e', `\t', for ESC and
  367. TAB), then they can also be represented as strings:
  368.       (vip-record-kbd-macro "aa" 'vi-state  "aaa\e"  "my-buffer")
  369. Thus, typing `aa' fast in Vi state will switch Viper to Insert state
  370. (due to the first `a'), insert `aa', and then it will switch back to Vi
  371. state. All this will take effect only in the buffer named `my-buffer'.
  372.    Note that the last argument to `vip-record-kbd-macro' must be either
  373. a string (a buffer name), a symbol representing a major mode, or `t';
  374. the latter says that the macro is to be defined for all buffers (which
  375. is how macros are defined in original Vi).
  376.    For convenience, Viper also lets you define Vi-style macros in its
  377. Emacs state. There is no Ex command, like `:map' and `:map!' for doing
  378. this, but the user can include such a macro in the `~/.vip' file. The
  379. only thing is that the `vip-record-kbd-macro' command should specify
  380. `'emacs-state' instead of `'vi-state' or `'insert-state'.
  381.    The user can get rid of a macro either by using the Ex commands
  382. `:unmap' and `:unmap!' or by issuing a call to `vip-unrecord-kbd-macro'.
  383. The latter is more powerful, since it can delete macros even in
  384. `'emacs-state'. However, `vip-unrecord-kbd-macro' is usually needed
  385. only when the user needs to get rid of the macros that are already
  386. predefined in Viper.  The syntax is:
  387.      (vip-unrecord-kbd-macro macro state)
  388. The second argument must be `'vi-state', `'insert-state', or
  389. `'emacs-state'. The first argument is a name of a macro.  To avoid
  390. mistakes in specifying names of existing macros, type `M-x
  391. vip-describe-kbd-macros' and use a name from the list displayed by this
  392. command.
  393.    If an error occurs during macro definition, Emacs aborts the
  394. process, and it must be repeated. This is analogous to Vi, except that
  395. in Vi the user doesn't know there is an error until the macro is
  396. actually run. All that means that in order for a definition to be
  397. successful, the user must do some simple planning of the process in
  398. advance, to avoid errors.  For instance, if you want to map `gg' to
  399. `llll' in Vi state, you must make sure that there is enough room on the
  400. current line. Since `l' moves the cursor forward, it may signal an
  401. error on reaching the end of line, which will abort the definition.
  402.    These precautions are necessary only when defining macros; they will
  403. help avoid the need to redo the job. When macros are actually run, an
  404. error during the execution will simply terminate the current execution
  405. (but the macro will remain mapped).
  406.    A macro name can be a string of characters or a vector of keys.  The
  407. latter makes it possible to define macros bound to, say, double-hits on
  408. a function key, such as `up' or `f13'.  This is very useful if you run
  409. out of function keys on your keyboard; it makes Viper macro facility a
  410. *keyboard doubler*, so to speak.
  411.    Elsewhere (*Note Keybindings::, for details), we review the standard
  412. Emacs mechanism for binding function keys to commands.  For instance,
  413.      (global-set-key [f13] 'repeat-complex-command)
  414. binds the key f13 to the Emacs function that repeats the last minibuffer
  415. command. Under Viper, however, you may still use this key for additional
  416. purposes, if you bind, say, a double-hitting action for that key to some
  417. other function. Emacs doesn't allow the user to do that, but Viper does
  418. this through its keyboard macro facility. To do this, type `:map '
  419. first. When you are asked to enter a macro name, hit f13 twice,
  420. followed by RET or SPC.
  421.    Emacs will now start the mapping process by actually executing Vi
  422. and Emacs commands, so that you could see what will happen each time the
  423. macro is executed. Suppose now we wanted to bind the key sequence `f13
  424. f13' to the command `eval-last-sexp'. To accomplish this, we can type
  425. `M-x eval-last-sexp' followed by `C-x )'.  If you answer positively to
  426. Viper's offer to save this macro in `~/.vip' for future uses, the
  427. following will be inserted in that file:
  428.      (vip-record-kbd-macro [f16 f16] 'vi-state
  429.               [(meta x) e v a l - l a s t - s e x p]
  430.               'lisp-interaction-mode)
  431.    To illustrate the above point, Viper provides two canned macros,
  432. which, by default, are bound to `[f12 \1]' and `[f12 \2]' (invoked by
  433. typing `f12' then `1' and `2', respectively).  These macros are useful
  434. shortcuts to Viper's command ring history.  The first macro will
  435. execute the second-last destructive command (the last one is executed
  436. by `.', as usual). The second macro executes the third-last command.
  437.    If you need to go deeper into the command history, you will have to
  438. use other commands, as described earlier in this section; or you can
  439. bind, say, `f12 \3' like this:
  440.      (vip-record-kbd-macro [f12 \3] 'vi-state
  441.                            [(meta x) r e p e a t - f r o m - h i s t o r y]
  442.                            t)
  443.    Note that even though the macro uses the function key `f12', the key
  444. is actually free and can still be bound to some Emacs function via
  445. `define-key' or `global-set-key'.
  446.    Viper allows the user to define macro names that are prefixes of
  447. other macros.  For instance, one can define `[[' and `[[[[' to be
  448. macros.  If you type the exact sequence of such keys and then pause,
  449. Viper will execute the right macro. However, if you don't pause and,
  450. say, type `[[[[text' then the conflict is resolved as follows. If only
  451. one of the key sequences, `[[' or `[[[[' has a definition applicable to
  452. the current buffer, then, in fact, there is no conflict and the right
  453. macro will be chosen. If both have applicable definitions, then the
  454. first one found will be executed. Usually this is the macro with a
  455. shorter name. So, in our case, `[[[[text' will cause the macro `[[' to
  456. be executed twice and then the remaining keys, `t e x t', will be
  457. processed.
  458.    When defining macros using `:map' or `:map!', the user enters the
  459. actually keys to be used to invoke the macro. For instance, you should
  460. hit the actual key `f6' if it is to be part of a macro name; you do
  461. *not* write `f 6'. When entering keys, Viper displays them as strings or
  462. vectors (e.g., "abc" or [f6 f7 a]). The same holds for unmapping.
  463. Hitting TAB while typing a macro name in the `:unmap' or `:unmap!'
  464. command will cause name completion. Completions are displayed as
  465. strings or vectors.  However, as before, you don't actually type """,
  466. "[", or "]" that appear in the completions. These are meta-symbols that
  467. indicate whether the corresponding macro name is a vector or a string.
  468.    One last difference from Vi: Vi-style keyboard macros cannot be
  469. defined in terms of other Vi-style keyboard macros (but named Emacs
  470. macros are OK).  More precisely, while defining or executing a macro,
  471. the special meaning of key sequences (as Vi macros) is ignored.  This
  472. is because it is all too easy to create an infinite loop in this way.
  473. Since Viper macros are much more powerful than Vi's it is impossible to
  474. detect such loops. In practice, this is not really a limitation but,
  475. rather, a feature.
  476.    We should also note that Vi macros are disabled in the Minibuffer,
  477. which helps keep some potential troubles away.
  478.    The rate at which the user must type keys in order for them to be
  479. recognized as a timeout macro is controlled by the variable
  480. `vip-fast-keyseq-timeout', which defaults to 200 milliseconds.
  481.    For the most part, Viper macros defined in `~/.vip' can be shared
  482. between Emacs, XEmacs, and X and TTY modes.  However, macros defined via
  483. function keys may need separate definitions when XEmacs and Emacs have
  484. different names for the same keyboard key. For instance, the `Page Up'
  485. key may be known in Emacs as `prior' and in XEmacs as `pgup'.  The
  486. problem with TTY may be that the function keys there generate sequences
  487. of events instead of a single event (as under a window system).  Both
  488. Emacs and XEmacs mape some of these sequences back to the logical keys
  489. (e.g., the sequences generated by the arrow keys are mapped to `up',
  490. `left', etc.). However, not all function keys are mapped in this way.
  491. Macros that are bound to key sequences that contain such unmapped
  492. function keys have to be redefined for TTY's (and possibly for every
  493. type of TTY you may be using). To do this, start Emacs on an
  494. appropriate TTY device and define the macro using `:map', as usual.
  495.    Finally, Viper provides a function that conveniently displays all
  496. macros currently defined. To see all macros along with their
  497. definitions, type `M-x vip-describe-kbd-macros'.
  498. File: viper,  Node: Commands,  Prev: Customization,  Up: Top
  499.    Top
  500. Commands
  501. ********
  502.    This section is a semi-automatically bowdlerized version of the Vi
  503. reference created by
  504. `maart@cs.vu.nl' and others. It can be found on the Vi archives. Very
  505. little has been changed for Viper.
  506. * Menu:
  507. * Groundwork::            Textual Conventions and Viper basics
  508. * Text Handling::        Moving, Editing, Undoing.
  509. * Display::            Scrolling.
  510. * File and Buffer Handling::    Editing, Writing and Quitting.
  511. * Mapping::            Mapping Keys, Keyboard Macros
  512. * Shell Commands::        Accessing Shell Commands, Processing Text
  513. * Options::            Ex options, the `:set' commands
  514. * Emacs Related Commands::    Meta Keys, Windows
  515. * Mouse-bound Commands::        Search and insertion of text
  516. File: viper,  Node: Groundwork,  Next: Text Handling,  Prev: Commands,  Up: Commands
  517. Groundwork
  518. ==========
  519.    The VI command set is based on the idea of combining motion commands
  520. with other commands. The motion command is used as a text region
  521. specifier for other commands.  We classify motion commands into "point
  522. commands" and "line commands".
  523.    The point commands are:
  524.      `h', `l', `0',  `$', `w', `W', `b', `B', `e', `E', `(', `)', `/',
  525.      `?', ``', `f', `F', `t', `T', `%', `;', `,', `^'
  526.    The line commands are:
  527.      `j', `k', `+', `-', `H', `M', `L', `{', `}', `G', `'',  `[[',
  528.      `]]', `[]'
  529. Text Deletion Commands (*Note Deleting Text::), Change commands (*Note
  530. Changing Text::), even Shell Commands (*Note Shell Commands::) use
  531. these commands to describe a region of text to operate on.
  532.    Viper adds two region descriptors, `r' and `R'. These describe the
  533. Emacs regions (*Note Basics::), but they are not movement commands.
  534.    The command description uses angle brackets `<>' to indicate
  535. metasyntactic variables, since the normal conventions of using simple
  536. text can be confusing with Viper where the commands themselves are
  537. characters. Watch out where `<' shift commands and `<count>' are
  538. mentioned together!!!
  539.    `<move>' refers to the above movement commands, and `<a-z>' refers
  540. to registers or textmarkers from `a' to `z'. Note that the `<move>'  is
  541. described by full move commands, that is to say they will take counts,
  542. and otherwise behave like normal move commands.  `<address>' refers to
  543. Ex line addresses, which include
  544. `. <No address>'
  545.      Current line
  546. `.+n .-n'
  547.      Add or subtract for current line
  548. `number'
  549.      Actual line number, use `.=' to get the line number
  550. `'<a-z>'
  551.      Textmarker
  552.      Last line
  553. `x,y'
  554.      Where x and y are one of the above
  555.      For the whole file, same as (1,$).
  556. `/pat/'
  557. `?pat?'
  558.      Next or previous line with pattern pat
  559.    Note that `%' is used in Ex commands to mean current file. If you
  560. want a `%' in your command, it must be escaped as `\%'.  Similarly, `#'
  561. expands to the previous file. The previous file is the first file in
  562. `:args' listing. This defaults to previous window in the VI sense if
  563. you have one window only.
  564. Others like `<args> -- arguments', `<cmd> -- command' etc.  should be
  565. fairly obvious.
  566. Common characters referred to include:
  567. `<sp>'
  568.      Space
  569. `<ht>'
  570.      Tab
  571. `<lf>'
  572.      Linefeed
  573. `<esc>'
  574.      Escape
  575. `<cr>'
  576.      Return, Enter
  577.    We also use `word' for alphanumeric/non-alphanumeric words, and
  578. `WORD' for whitespace delimited words. `char' refers to any ASCII
  579. character, `CHAR' to non-whitespace character.  Brackets `[]' indicate
  580. optional parameters; `<count>' also optional, usually defaulting to 1.
  581. Brackets are elided for `<count>' to eschew obfuscation.
  582.    Viper's idea of Vi's words is slightly different from Vi. First,
  583. Viper words understand Emacs symbol tables. Therefore, all symbols
  584. declared to be alphanumeric in a symbol table can automatically be made
  585. part of the Viper word.  This is useful when, for instance, editing
  586. text containing European, Cyrillic, etc., letters.
  587.    Second, Viper lets you depart from Vi's idea of a word by changing
  588. the value of `vip-syntax-preference'. By default, this variable is set
  589. to `'strict-vi', which means that alphanumeric symbols are exactly as
  590. in Vi.  However, if the value is `'reformed-vi' then alphanumeric
  591. symbols will be those specified by the current Emacs syntax table (which
  592. may be different for different major modes) plus the underscore symbol
  593. `_'. The user can also specify the value `'emacs', which would make
  594. Viper use exactly the Emacs notion of word. In particular, the
  595. underscore may not be part of a word. Finally, if
  596. `vip-syntax-preference' is set to `'extended', Viper words would
  597. consist of characters that are classified as alphanumeric *or* as parts
  598. of symbols. This is convenient for writing programs and in many other
  599. situations.
  600.    `vip-syntax-preference' is a local variable, so it can have different
  601. values for different major modes. For instance, in programming modes it
  602. can have the value `'extended'. In text modes where words contain
  603. special characters, such as European (non-English) letters, Cyrillic
  604. letters, etc., the value can be `'reformed-vi' or `'emacs'.
  605.    Changes to `vip-syntax-preference' should be done in the hooks to
  606. various major modes. Furthermore, for these changes to take effect, you
  607. should execute `(vip-update-alphanumeric-class)' right after changing
  608. the value of `vip-syntax-preference'.
  609.    The above discussion concerns only the movement commands. In regular
  610. expressions, words remain the same as in Emacs.  That is, the
  611. expressions `\w', `\>', `\<', etc., use Emacs' idea of what is a word,
  612. and they don't look into the value of variable `vip-syntax-preference'.
  613. This is because Viper doesn't change syntax tables in order to not
  614. thwart the various major modes that set these tables.
  615.    The usual Emacs convention is used to indicate Control Characters,
  616. i.e C-h for Control-h. *Do not confuse this to mean the separate
  617. characters C - h!!!* The `^' is itself, never used to indicate a
  618. Control character.
  619. File: viper,  Node: Text Handling,  Next: Display,  Prev: Groundwork,  Up: Commands
  620. Text Handling
  621. =============
  622. * Menu:
  623. * Move Commands::        Moving, Searching
  624. * Marking::                Textmarkers in Viper and the Emacs Mark.
  625. * Appending Text::        Text insertion, Shifting, Putting
  626. * Editing in Insert State::    Autoindent, Quoting etc.
  627. * Deleting Text::        Deleting
  628. * Changing Text::        Changing, Replacement, Joining
  629. * Search and Replace::        Searches, Query Replace, Pattern Commands
  630. * Yanking::            Yanking, Viewing Registers
  631. * Undoing::            Multiple Undo, Backups
  632. File: viper,  Node: Move Commands,  Next: Marking,  Up: Text Handling
  633. Move Commands
  634. -------------
  635. `<count>  h  C-h'
  636.      <count> chars to the left.
  637. `<count>  j  <lf> C-n'
  638.      <count> lines downward.
  639. `<count>  l  <sp>'
  640.      <count> chars to the right.
  641. `<count>  k  C-p'
  642.      <count> lines upward.
  643. `<count>  $'
  644.      To the end of line <count> from the cursor.
  645. `<count>  ^'
  646.      To the first CHAR <count> - 1 lines lower.
  647. `<count>  -'
  648.      To the first CHAR <count> lines higher.
  649. `<count>  +  <cr>'
  650.      To the first CHAR <count> lines lower.
  651.      To the first char of the line.
  652. `<count> |'
  653.      To column <count>
  654. `<count>  f<char>'
  655.      <count> <char>s to the right (find).
  656. `<count>  t<char>'
  657.      Till before <count> <char>s to the right.
  658. `<count>  F<char>'
  659.      <count> <char>s to the left.
  660. `<count>  T<char>'
  661.      Till after <count> <char>s to the left.
  662. `<count>  ;'
  663.      Repeat latest `f t F T' <count> times.
  664. `<count>  ,'
  665.      Repeat latest `f t F T' <count> times in opposite direction.
  666. `<count>  w'
  667.      <count> words forward.
  668. `<count>  W'
  669.      <count> WORDS forward.
  670. `<count>  b'
  671.      <count> words backward.
  672. `<count>  B'
  673.      <count> WORDS backward.
  674. `<count>  e'
  675.      To the end of word <count> forward.
  676. `<count>  E'
  677.      To the end of WORD <count> forward.
  678. `<count>  G'
  679.      Go to line <count> (default end-of-file).
  680. `<count>  H'
  681.      To line <count> from top of the screen (home).
  682. `<count>  L'
  683.      To line <count> from bottom of the screen (last).
  684.      To the middle line of the screen.
  685. `<count>  )'
  686.      <count> sentences forward.
  687. `<count>  ('
  688.      <count> sentences backward.
  689. `<count>  }'
  690.      <count> paragraphs forward.
  691. `<count>  {'
  692.      <count> paragraphs backward.
  693. `<count>  ]]'
  694.      To the <count>th heading.
  695. `<count>  [['
  696.      To the <count>th previous heading.
  697. `<count>  []'
  698.      To the end of <count>th heading.
  699. `m<a-z>'
  700.      Mark the cursor position with a letter.
  701. ``<a-z>'
  702.      To the mark.
  703. `'<a-z>'
  704.      To the first CHAR of the line with the mark.
  705. `[<a-z>'
  706.      Show contents of textmarker.
  707. `]<a-z>'
  708.      Show contents of register.
  709.      To the cursor position before the latest absolute jump (of which
  710.      are examples `/' and `G').
  711.      To the first CHAR of the line on which the cursor was placed
  712.      before the latest absolute jump.
  713. `<count>  /<string>'
  714.      To the <count>th occurrence of <string>.
  715. `<count>  /<cr>'
  716.      To the <count>th occurrence of <string> from previous `/ or ?'.
  717. `<count>  ?<string>'
  718.      To the <count>th previous occurrence of <string>.
  719. `<count>  ?<cr>'
  720.      To the <count>th previous occurrence of <string> from previous `?
  721.      or /'.
  722.      Repeat latest `/' `?' (next).
  723.      Repeat latest search in opposite direction.
  724. `C-c /'
  725.      Without a prefix argument, this command toggles
  726.      case-sensitive/case-insensitive search modes and plain
  727.      vanilla/regular expression search. With the prefix argument 1,
  728.      i.e., `1 C-c /', this toggles case-sensitivity; with the prefix
  729.      argument 2, toggles plain vanilla search and search using regular
  730.      expressions. *Note Viper Specials::, for alternative ways to invoke
  731.      this function.
  732.      Find the next bracket and go to its match.
  733. File: viper,  Node: Marking,  Next: Appending Text,  Prev: Move Commands,  Up: Text Handling
  734. Marking
  735. -------
  736.    Emacs mark is referred to in the region specifiers `r' and `R'.
  737. *Note Emacs Preliminaries:: and *note Basics::. for explanation. Also
  738. see *Note Mark: (emacs)Mark, for an explanation of the Emacs mark ring.
  739. `m<a-z>'
  740.      Mark the current file and position with the specified letter.
  741. `m .'
  742.      Set the Emacs mark (*Note Emacs Preliminaries::) at point.
  743. `m <'
  744.      Set the Emacs mark at beginning of buffer.
  745. `m >'
  746.      Set the Emacs mark at end of buffer.
  747. `m ,'
  748.      Jump to the Emacs mark.
  749. `:mark <char>'
  750.      Mark position with text marker named <char>. This is an Ex command.
  751. `:k <char>'
  752.      Same as `:mark'.
  753.      Exchange point and mark.
  754.      Exchange point and mark and go to the first CHAR on line.
  755. `'<a-z>'
  756.      Go to specified Viper mark.
  757.      Go to specified Viper mark and go to the first CHAR on line.
  758. File: viper,  Node: Appending Text,  Next: Editing in Insert State,  Prev: Marking,  Up: Text Handling
  759. Appending Text
  760. --------------
  761.    *Note Options:: to see how to change tab and shiftwidth size. See
  762. the GNU Emacs manual, or try `C-ha tabs' (If you have turned Emacs help
  763. on).  Check out the variable `indent-tabs-mode' to put in just spaces.
  764. Also see options for word-wrap.
  765. `<count>  a'
  766.      <count> times after the cursor.
  767. `<count>  A'
  768.      <count> times at the end of line.
  769. `<count>  i'
  770.      <count> times before the cursor (insert).
  771. `<count>  I'
  772.      <count> times before the first CHAR of the line
  773. `<count>  o'
  774.      On a new line below the current (open).  The count is only useful
  775.      on a slow terminal.
  776. `<count>  O'
  777.      On a new line above the current.  The count is only useful on a
  778.      slow terminal.
  779. `<count>  ><move>'
  780.      Shift the lines described by <count><move> one shiftwidth to the
  781.      right (layout!).
  782. `<count>  >>'
  783.      Shift <count> lines one shiftwidth to the right.
  784. `<count>  ["<a-z1-9>]p'
  785.      Put the contents of the (default undo) buffer <count> times after
  786.      the cursor. The register will be automatically downcased.
  787. `<count>  ["<a-z1-9>]P'
  788.      Put the contents of the (default undo) buffer <count> times before
  789.      the cursor. The register will
  790. `[<a-z>'
  791.      Show contents of textmarker.
  792. `]<a-z>'
  793.      Show contents of register.
  794. `<count>  .'
  795.      Repeat previous command <count> times. For destructive commands as
  796.      well as undo.
  797. `f1 1 and f1 2'
  798.      While `.' repeats the last destructive command, these two macros
  799.      repeat the second-last and the third-last destructive commands.
  800.      *Note Vi Macros::, for more information on Vi macros.
  801. `C-c M-p and C-c M-n'
  802.      In Vi state, these commands help peruse the history of Vi's
  803.      destructive commands.  Successive typing of `C-c M-p' causes Viper
  804.      to search the history in the direction of older commands, while
  805.      hitting `C-c M-n' does so in reverse order. Each command in the
  806.      history is displayed in the Minibuffer. The displayed command can
  807.      then be executed by typing ``.''.
  808.      Since typing the above sequences of keys may be tedious, the
  809.      functions doing the perusing can be bound to unused keyboard keys
  810.      in the `~/.vip' file. *Note Viper Specials::, for details.
  811. File: viper,  Node: Editing in Insert State,  Next: Deleting Text,  Prev: Appending Text,  Up: Text Handling
  812. Editing in Insert State
  813. -----------------------
  814.    Minibuffer can be edited similarly to Insert state, and you can
  815. switch between Insert/Replace/Vi states at will.  Some users prefer
  816. plain Emacs feel in the Minibuffer. To this end, set
  817. VIP-VI-STYLE-IN-MINIBUFFER to `nil'.
  818. `C-v'
  819.      Deprive the next char of its special meaning (quoting).
  820. `C-h'
  821.      One char back.
  822. `C-w'
  823.      One word back.
  824. `C-u'
  825.      Back to the begin of the change on the current line.
  826. File: viper,  Node: Deleting Text,  Next: Changing Text,  Prev: Editing in Insert State,  Up: Text Handling
  827. Deleting Text
  828. -------------
  829.    There is one difference in text deletion that you should be aware
  830. of. This difference comes from Emacs and was adopted in Viper because
  831. we find it very useful. In Vi, if you delete a line, say, and then
  832. another line, these two deletions are separated and are put back
  833. separately if you use the `p' command. In Emacs (and Viper), successive
  834. series of deletions that are *not interrupted* by other commands are
  835. lumped together, so the deleted text gets accumulated and can be put
  836. back as one chunk. If you want to break a sequence of deletions so that
  837. the newly deleted text could be put back separately from the previously
  838. deleted text, you should perform a non-deleting action, e.g., move the
  839. cursor one character in any direction.
  840. `<count>  x'
  841.      Delete <count> chars under and after the cursor.
  842. `<count>  X'
  843.      Delete <count> chars before the cursor.
  844. `<count>  d<move>'
  845.      Delete from point to endpoint of <count><move>.
  846. `<count>  dd'
  847.      Delete <count> lines.
  848.      The rest of the line.
  849. `<count>  <<move>'
  850.      Shift the lines described by <count><move> one shiftwidth to the
  851.      left (layout!).
  852. `<count>  <<'
  853.      Shift <count> lines one shiftwidth to the left.
  854. File: viper,  Node: Changing Text,  Next: Search and Replace,  Prev: Deleting Text,  Up: Text Handling
  855. Changing Text
  856. -------------
  857. `<count>  r<char>'
  858.      Replace <count> chars by <char> - no <esc>.
  859. `<count>  R'
  860.      Overwrite the rest of the line, appending change COUNT - 1 times.
  861. `<count>  s'
  862.      Substitute <count> chars.
  863. `<count>  S'
  864.      Change <count> lines.
  865. `<count>  c<move>'
  866.      Change from begin to endpoint of <count><move>.
  867. `<count>  cc'
  868.      Change <count> lines.
  869. `<count>  C'
  870.      The rest of the line and <count> - 1 next lines.
  871. `<count>  =<move>'
  872.      Reindent the region described by move.
  873. `<count>  ~'
  874.      Switch lower and upper cases.
  875. `<count>  J'
  876.      Join <count> lines (default 2).
  877. `:[x,y]s/<p>/<r>/<f>'
  878.      Substitute (on lines x through y) the pattern <p> (default the
  879.      last pattern) with <r>.  Useful flags <f> are `g' for `global'
  880.      (i.e. change every non-overlapping occurrence of <p>) and `c' for
  881.      `confirm' (type `y' to confirm a particular substitution, else `n'
  882.      ).  Instead of `/' any punctuation CHAR unequal to <space> <tab>
  883.      and <lf> can be used as delimiter.
  884. `:[x,y]copy [z]'
  885.      Copy text between `x' and `y' to the position after `z'.
  886. `:[x,y]t [z]'
  887.      Same as `:copy'.
  888. `:[x,y]move [z]'
  889.      Move text between `x' and `y' to the position after `z'.
  890.      Repeat latest Ex substitute command, e.g.  `:s/wrong/good'.
  891. `C-c /'
  892.      Toggle case-sensitive search. With prefix argument, toggle
  893.      vanilla/regular expression search.
  894. `#c<move>'
  895.      Change upper case characters in the region to lower case.
  896. `#C<move>'
  897.      Change lower case characters in the region to upper case.
  898. `#q<move>'
  899.      Insert specified string at the beginning of each line in the region
  900. `C-c M-p and C-c M-n'
  901.      In Insert and Replace states, these keys are bound to commands
  902.      that peruse the history of the text previously inserted in other
  903.      insert or replace commands. By repeatedly typing `C-c M-p' or `C-c
  904.      M-n', you will cause Viper to insert these previously used strings
  905.      one by one.  When a new string is inserted, the previous one is
  906.      deleted.
  907.      In Vi state, these keys are bound to functions that peruse the
  908.      history of destructive Vi commands.  *Note Viper Specials::, for
  909.      details.
  910. File: viper,  Node: Search and Replace,  Next: Yanking,  Prev: Changing Text,  Up: Text Handling
  911. Search and Replace
  912. ------------------
  913.    *Note Groundwork::, for Ex address syntax. *Note Options:: to see
  914. how to get literal (non-regular-expression) search and how to stop
  915. search from wrapping around.
  916. `<count>  /<string>'
  917.      To the <count>th occurrence of <string>.
  918. `<count>  ?<string>'
  919.      To the <count>th previous occurrence of <string>.
  920. `<count>  g<move>'
  921.      Search for the text described by move. (off by default)
  922.      Repeat latest `/' `?' (next).
  923.      Idem in opposite direction.
  924.      Find the next bracket and go to its match
  925. `:[x,y]g/<string>/<cmd>'
  926.      Search globally [from line x to y] for <string> and execute the Ex
  927.      <cmd> on each occurrence.
  928. `:[x,y]v/<string>/<cmd>'
  929.      Execute <cmd> on the lines that don't match.
  930. `#g<move>'
  931.      Execute the last keyboard macro for each line in the region.
  932.      *Note Macros and Registers::, for more info.
  933.      Query Replace.
  934. `:ta <name>'
  935.      Search in the tags file where <name> is defined (file, line), and
  936.      go to it.
  937. `:[x,y]s/<p>/<r>/<f>'
  938.      Substitute (on lines x through y) the pattern <p> (default the last
  939.      pattern) with <r>.  Useful flags <f> are `g' for `global' (i.e.
  940.      change every non-overlapping occurrence of <p>) and `c' for
  941.      `confirm' (type `y' to confirm a particular substitution, else
  942.      `n').  Instead of `/' any punctuation CHAR unequal to <space>
  943.      <tab> and <lf> can be used as delimiter.
  944.      Repeat latest Ex substitute command, e.g. `:s/wrong/good'.
  945. File: viper,  Node: Yanking,  Next: Undoing,  Prev: Search and Replace,  Up: Text Handling
  946. Yanking
  947. -------
  948. `<count>  y<move>'
  949.      Yank from begin to endpoint of <count><move>.
  950. `<count>  "<a-z>y<move>'
  951.      Yank from begin to endpoint of <count><move> to register.
  952. `<count>  "<A-Z>y<move>'
  953.      Yank from begin to endpoint of <count><move> and append to
  954.      register.
  955. `<count>  yy'
  956.      <count> lines.
  957. `<count>  Y'
  958.      Idem (should be equivalent to `y$' though).
  959. `m<a-z>'
  960.      Mark the cursor position with a letter.
  961. `[<a-z>'
  962.      Show contents of textmarker.
  963. `]<a-z>'
  964.      Show contents of register.
  965. `<count>  ["<a-z1-9>]p'
  966.      Put the contents of the (default undo) buffer <count> times after
  967.      the cursor. The register will be automatically downcased.
  968. `<count>  ["<a-z1-9>]P'
  969.      Put the contents of the (default undo) buffer <count> times before
  970.      the cursor. The register will
  971. File: viper,  Node: Undoing,  Prev: Yanking,  Up: Text Handling
  972. Undoing
  973. -------
  974. `u U'
  975.      Undo the latest change.
  976.      Repeat undo.
  977. `:q!'
  978.      Quit Vi without writing.
  979. `:e!'
  980.      Re-edit a messed-up file.
  981. `:rec'
  982.      Recover file from autosave. Viper also creates backup files that
  983.      have a `~' appended to them.
  984.