diff options
Diffstat (limited to 'runtime/doc/motion.txt')
-rw-r--r-- | runtime/doc/motion.txt | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index 7173faf97..16c929cb7 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1,4 +1,4 @@ -*motion.txt* For Vim version 7.0f. Last change: 2006 Apr 29 +*motion.txt* For Vim version 7.0g. Last change: 2006 Apr 30 VIM REFERENCE MANUAL by Bram Moolenaar @@ -780,7 +780,7 @@ g'{mark} g`{mark} < to list marks 'a' and 'B'. {not in Vi} *:delm* *:delmarks* -:delm[arks] {marks} Delete the specified marks. Marks that can be deleted +:delm[arks] {marks} Delete the specified marks. Marks that can be deleted include A-Z and 0-9. You cannot delete the ' mark. They can be specified by giving the list of mark names, or with a range, separated with a dash. Spaces @@ -854,11 +854,17 @@ was made yet in the current file. *'<* *`<* '< `< To the first character of the last selected Visual - area in the current buffer. {not in Vi}. + area in the current buffer. For block mode it may + also be the last character in the first line (to be + able to define the block). {not in Vi}. *'>* *`>* '> `> To the last character of the last selected Visual - area in the current buffer. {not in Vi}. + area in the current buffer. For block mode it may + also be the first character of the last line (to be + able to define the block). Note that 'selection' + applies, the position may be just after the Visual + area. {not in Vi}. *''* *``* '' `` To the position before the latest jump, or where the @@ -985,7 +991,7 @@ These commands are not marks themselves, but jump to a mark: < Note that ":keepjumps" must be used for every command. When invoking a function the commands in that function - can still change the jumplist. Also, for + can still change the jumplist. Also, for ":keepjumps exe 'command '" the "command" won't keep jumps. Instead use: ":exe 'keepjumps command'" |