diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-10 20:19:46 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-10 20:19:46 +0000 |
commit | e5180526fdae3caa388b020fb4cf9f9171733a58 (patch) | |
tree | 10634175a22df9dde4cc87a8d7edb1de6dc75b01 /runtime/doc/motion.txt | |
parent | 24552beda0124d51735b2dd5a0352cb81a196d14 (diff) | |
download | vim-git-e5180526fdae3caa388b020fb4cf9f9171733a58.tar.gz |
updated for version 7.0166
Diffstat (limited to 'runtime/doc/motion.txt')
-rw-r--r-- | runtime/doc/motion.txt | 4 |
1 files changed, 2 insertions, 2 deletions
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" |