Lines Matching refs:jump
20 8. Jumps |jump-motions|
336 G is one of the |jump-motions|.
848 Uppercase marks 'A to 'Z include the file name. You can use them to jump from
875 inserting several lines with the "p" command you want to jump to the lowest
897 '' `` To the position before the latest jump, or where the
905 line. See |last-position-jump| for how to use this
924 To jump to older changes use |g;|.
942 These commands are not marks themselves, but jump to a mark:
1024 8. Jumps *jump-motions*
1026 A "jump" is a command that normally moves the cursor several lines away. If
1027 you make the cursor "jump" the position of the cursor before the jump is
1030 following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N",
1035 CTRL-O Go to [count] Older cursor position in jump list
1040 CTRL-I Go to [count] newer cursor position in jump list
1051 :ju[mps] Print the jump list (not a motion command).
1055 :cle[arjumps] Clear the jump list of the current window.
1059 Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you
1061 move up and down the list. There is a separate jump list for each window.
1065 For example, after three jump commands you have this jump list:
1067 jump line col file/text ~
1073 The "file/text" column shows the file name, or the text at the jump if it is
1080 jump line col file/text ~
1086 The pointer will be set at the last used jump position. The next CTRL-O
1090 will cause the cursor position to be added to the jump list, so you can get
1094 you can go back to 1154 and 1167 again. Note that the number in the "jump"
1098 If you use a jump command, the current line number is inserted at the end of
1099 the jump list. If the same line was already in the jump list, it is removed.
1105 command. You can explicitly add a jump by setting the ' mark with "m'". Note
1109 jump command (e.g., "G"). The jump list would then become:
1111 jump line col file/text ~
1131 previous change. Two commands can be used to jump to positions of changes,
1148 When using a count you jump as far back or forward as possible. Thus you can
1197 cursor and jump to its match. |inclusive| motion.
1256 start of a method, jump to the start or end of the
1262 of a method, jump to the start or end of the class.
1268 start of a method, jump to the start or end of the
1274 end of a method, jump to the start or end of the
1294 confuses the jump commands]
1296 Starting with the cursor on "body_two()", using "[m" will jump to the '{' at
1298 method is long!). Using "2[m" will jump to the start of "method_one()".
1299 Using "3[m" will jump to the start of the class.