diff options
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/change.txt | 7 | ||||
-rw-r--r-- | runtime/doc/motion.txt | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index 218713a0d..29a2c9f3e 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.0aa. Last change: 2005 Nov 30 +*change.txt* For Vim version 7.0aa. Last change: 2005 Dec 10 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1494,8 +1494,9 @@ Vim has a sorting function and a sorting command. The sorting function can be found here: |sort()|. *:sor* *:sort* -:[range]sor[t][!] [i] [u] [/{pattern}/] - Sort lines in [range]. +:[range]sor[t][!] [i][u][n][x][o] [/{pattern}/] + Sort lines in [range]. When no range is given all + lines are sorted. With [!] the order is reversed. diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index 8731f2986..ba8e42379 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1,4 +1,4 @@ -*motion.txt* For Vim version 7.0aa. Last change: 2005 Sep 14 +*motion.txt* For Vim version 7.0aa. Last change: 2005 Dec 09 VIM REFERENCE MANUAL by Bram Moolenaar @@ -973,7 +973,7 @@ These commands are not marks themselves, but jump to a mark: position. E.g., when updating a "Last change" timestamp in the first line: > - :let lnum = getline(".") + :let lnum = line(".") :keepjumps normal gg :call SetLastChange() :keepjumps exe "normal " . lnum . "G" |