As I know ,to copy a word in vim, use the command 'byw', Is there a shorter way to do that? Only use 'y' and another character so that I don't have to move the cursor in front of the word? To delete a word is so much like above,any ideas? Thanks for help
|
|
Maybe that helps? |
|||||||
|
|
You can create an operator-pending map for the
Now you can use |
|||
|
|
|
yb (depending on where in/after the word the cursor is currently) In general, you can combine any motion command after the y. The b motion moves to the beginning of the word. w moves to the beginning of the next word. So byw and yb are the same, if your cursor is currently at the beginning of the next word. bye is similar to byw except it yanks only until the end of the current word (so excludes whitespace between it and the next word). Simply replace the y in each of the above with d for delete. |
||||
|
|