Lines Matching refs:command
30 In chapter 2 you learned the "x" command to delete a single character. And
32 The "dw" command deletes a word. You may recognize the "w" command as the
33 move word command. In fact, the "d" command may be followed by any motion
34 command, and it deletes from the current location to the place where the
36 The "4w" command, for example, moves the cursor over four words. The "d4w"
37 command deletes four words.
47 of a word. If you use the "e" command to move to the end of a word, Vim
56 Whether the character under the cursor is included depends on the command you
60 The "$" command moves to the end of a line. The "d$" command deletes from the
70 There is a pattern here: operator-motion. You first type an operator command.
71 For example, "d" is the delete operator. Then you type a motion command like
97 "cw" command. The c operator works just like the d operator, with one
117 single-letter command:
130 picky about things, the first command, "3dw", deletes one word three times;
131 the command "d3w" deletes three words once. This is a difference without a
138 The "r" command is not an operator. It waits for you to type a character, and
140 with "cl" or with the "s" command, but with "r" you don't have to press <Esc>
164 The "." command is one of the simplest yet powerful commands in Vim. It
167 and delete the <B> with the command "df>". You then go to the < of the next
168 </B> and delete it using the "." command. The "." command executes the last
169 change command (in this case, "df>"). To delete another tag, position the
170 cursor on the < and use the "." command.
180 The "." command works for all changes you make, except for "u" (undo), CTRL-R
199 it's not so easy to decide which command will move over the text you want to
204 the operator command.
259 change the other end of the selection, use the "o" command (Hint: o for other
274 When you delete something with "d", "x", or another command, the text is
275 saved. You can paste it back by using the "p" command. (The Vim name for
280 command. The line is inserted on the line below the cursor.
286 Because you deleted an entire line, the "p" command placed the text line below
288 command puts it just after the cursor.
303 The "P" command puts text like "p", but before the cursor. When you deleted a
319 and execute the command "xp". This works as follows: "x" deletes the
331 yanking. The "y" operator copies text into a register. Then a "p" command
352 The "yy" command yanks a whole line, just like "dd" deletes a whole line.
412 between the cursor position before and after a movement command, the text
451 The "R" command causes Vim to enter replace mode. In this mode, each
461 You may have noticed that this command replaced 5 characters in the line with
462 twelve others. The "R" command automatically extends the line if it runs out
468 old text is put back. Thus it works like an undo command for the previously
503 command. It does work in Visual mode, where it changes case