diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-01-08 16:06:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-01-08 16:06:37 +0100 |
commit | 2a8a3ecb67de119e39b4a9ffaff3460036db0210 (patch) | |
tree | bc76cf48934293007aeff07fcf74188a0a5708cb /runtime/doc/motion.txt | |
parent | 13d831ff0c8879bdf59e6de35a106ccb9b4766da (diff) | |
download | vim-git-2a8a3ecb67de119e39b4a9ffaff3460036db0210.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/motion.txt')
-rw-r--r-- | runtime/doc/motion.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index f54b803c4..04d77feff 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1033,20 +1033,20 @@ The maximum number of entries is fixed at 100. For example, after three jump commands you have this jump list: - jump line col file/line ~ + jump line col file/text ~ 3 1 0 some text ~ 2 70 0 another line ~ 1 1154 23 end. ~ > ~ -The "file/line" column shows the file name, or the text at the jump if it is +The "file/text" column shows the file name, or the text at the jump if it is in the current file (an indent is removed and a long line is truncated to fit in the window). You are currently in line 1167. If you then use the CTRL-O command, the cursor is put in line 1154. This results in: - jump line col file/line ~ + jump line col file/text ~ 2 1 0 some text ~ 1 70 0 another line ~ > 0 1154 23 end. ~ @@ -1076,7 +1076,7 @@ command. You can explicitly add a jump by setting the ' mark. After the CTRL-O command that got you into line 1154 you could give another jump command (e.g., "G"). The jump list would then become: - jump line col file/line ~ + jump line col file/text ~ 4 1 0 some text ~ 3 70 0 another line ~ 2 1167 0 foo bar ~ |