diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-25 17:49:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-25 17:49:10 +0200 |
commit | 6c35beaa11d38fc0c37a3d209295772313b12003 (patch) | |
tree | 811b970e87072e1901c554866c161e00064a4784 /runtime/doc/motion.txt | |
parent | 848f87633a4a89311838f0d00e12282f8e2e3003 (diff) | |
download | vim-git-6c35beaa11d38fc0c37a3d209295772313b12003.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/motion.txt')
-rw-r--r-- | runtime/doc/motion.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index 9b0af8cac..e1c937243 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1,4 +1,4 @@ -*motion.txt* For Vim version 7.3. Last change: 2012 Jul 06 +*motion.txt* For Vim version 7.3. Last change: 2012 Jul 25 VIM REFERENCE MANUAL by Bram Moolenaar @@ -57,7 +57,7 @@ or change text. The following operators are available: |>| > shift right |<| < shift left |zf| zf define a fold - |g@| g@ call function set with the 'operatorfunc' option + |g@| g@ call function set with the 'operatorfunc' option If the motion includes a count and the operator also had a count before it, the two counts are multiplied. For example: "2d3w" deletes six words. @@ -513,6 +513,8 @@ always select less text than the "a" commands. These commands are {not in Vi}. These commands are not available when the |+textobjects| feature has been disabled at compile time. +Also see `gn` and `gN`, operating on the last search pattern. + *v_aw* *aw* aw "a word", select [count] words (see |word|). Leading or trailing white space is included, but not @@ -689,6 +691,7 @@ movement commands are used. "daw" delete a word *daw* "diW" delete inner WORD (see |WORD|) *diW* "daW" delete a WORD (see |WORD|) *daW* + "dgn" delete the next search pattern match *dgn* "dd" delete one line |dd| "dis" delete inner sentence *dis* "das" delete a sentence *das* |