Lines Matching refs:command

31 To move the cursor forward one word, use the "w" command.  Like most Vim
42 The "b" command moves backward to the start of the previous word:
48 There is also the "e" command that moves to the next end of a word and "ge",
55 If you are at the last word of a line, the "w" command will take you to the
81 The "$" command moves the cursor to the end of a line. If your keyboard has
84 The "^" command moves to the first non-blank character of the line. The "0"
85 command (zero) moves to the very first character of the line, and the <Home>
96 The "$" command takes a count, like most movement commands. But moving to
101 The "0" command doesn't take a count argument, because the "0" would be
109 command. The command "fx" searches forward in the line for the single
112 want to go to the h of human. Just execute the command "fh" and the cursor
119 This also shows that the command "fy" moves to the end of the word really.
127 The "F" command searches to the left:
133 The "tx" command works like the "fx" command, except it stops one character
135 version of this command is "Tx".
146 wrong command. You type "f" to search backward, for example, only to realize
155 "%" command is very handy: It moves to the matching paren. If the cursor is
187 better way of doing things is to use the "G" command. With a count, this
188 command positions you at the given line number. For example, "33G" puts you
190 |usr_30.txt|, for information on the :make command.)
206 Another way to move to a line is using the "%" command with a count. For
233 1. Use the CTRL-G command. You get a message like this (assuming the 'ruler'
273 The CTRL-U command scrolls down half a screen of text. Think of looking
278 The CTRL-D command moves the viewing window down half a screen in the file,
309 the cursor. That's done with the "zz" command.
321 The "zt" command puts the cursor line at the top, "zb" at the bottom. There
328 To search for a string, use the "/string" command. To find the word include,
329 for example, use the command: >
337 Pressing <Enter> executes the command.
343 To find the next occurrence of the same string use the "n" command. Use this
353 The "?" command works like "/" but searches backwards: >
357 The "N" command repeats the last search the opposite direction. Thus using
358 "N" after a "/" command searches backwards, using "N" after "?" searches
384 you press <Up> (the cursor key), Vim puts "/three" on the command line.
393 you can type "/o<Up>" and Vim will put "/one" on the command line.
396 a previous command and execute it again. These two histories are separate.
405 command. Vim will grab the word under the cursor and use it as the search
407 The "#" command does the same in the other direction. You can prepend a
432 where it's used. You could move the cursor to "nr" and use the "*" command
434 There is another way. Type this command: >
445 command. If you only want to remove the highlighting, use this command: >
450 soon as you execute a search command, the highlighting will be used again.
475 Vim, you can put the command in your Vim startup file.
476 Edit the file, as mentioned at |not-compatible|. Or use this command to
485 Then add a line with the command to set the option, just like you typed it in
491 ":set" command. You end insert mode with <Esc>. Then write and close the
562 When you make a jump to a position with the "G" command, Vim remembers the
564 where you came from, use this command: >
569 If you use the same command a second time you will jump back again. That's
570 because the "`" command is a jump itself, and the position from before this
573 Generally, every time you do a command that can move the cursor further than
580 The "``" command jumps back and forth, between two points. The CTRL-O command
607 The ":jumps" command gives a list of positions you jumped to. The entry which
613 Vim enables you to place your own marks in the text. The command "ma" marks
616 To go to a mark, use the command `{mark}, where {mark} is the mark letter.
621 The command "'mark" (single quotation mark, or apostrophe) moves you to the
623 command, which also moves you to the marked column.
646 You can use this command to get a list of marks: >