Vim Tips Wiki
Register
(restore text more familiar to new users)
(formatting and some rewording)
Line 4: Line 4:
 
|previous=343
 
|previous=343
 
|next=345
 
|next=345
|created=October 15, 2002
+
|created=2002
 
|complexity=basic
 
|complexity=basic
 
|author=Kdr
 
|author=Kdr
|version=5.7
+
|version=6.0
 
|rating=126/53
 
|rating=126/53
 
|category1=
 
|category1=
Line 13: Line 13:
 
}}
 
}}
 
If you ever need to cut/copy/delete/paste lines without knowing the actual number of lines, here is what you should do.
 
If you ever need to cut/copy/delete/paste lines without knowing the actual number of lines, here is what you should do.
 
#In normal mode, go to the beginning of the section that you want to yank.
 
#In normal mode, go to the beginning of the section that you want to yank.
 
 
#Type <tt>mk</tt> to mark this spot as <tt>k</tt>.
 
#Type <tt>mk</tt> to mark this spot as <tt>k</tt>.
 
#Go to the end of the section you want to yank using whatever movement commands you like.
 
#Go to the end of the section you want to yank using whatever movement commands you like.
Line 20: Line 19:
 
#You can paste those lines wherever you want with <tt>p</tt>
 
#You can paste those lines wherever you want with <tt>p</tt>
   
Similarly, <tt>d'k</tt> will cut/delte the lines from the current location to the mark.
+
Similarly, <tt>d'k</tt> will cut/delete the lines from the current location to the mark.
   
 
==Comments==
 
==Comments==
Line 27: Line 26:
   
 
----
 
----
 
 
Be sure to check out visual mode. V will allow to select a range of lines, which you can then "ay, etc.
 
Be sure to check out visual mode. V will allow to select a range of lines, which you can then "ay, etc.
 
This is one of the coolest features of vim.
 
This is one of the coolest features of vim.

Revision as of 07:16, 22 January 2011

Tip 344 Printable Monobook Previous Next

created 2002 · complexity basic · author Kdr · version 6.0


If you ever need to cut/copy/delete/paste lines without knowing the actual number of lines, here is what you should do.

  1. In normal mode, go to the beginning of the section that you want to yank.
  2. Type mk to mark this spot as k.
  3. Go to the end of the section you want to yank using whatever movement commands you like.
  4. Type: y'k (<y-yank>, <single quote-go to mark>, k) To yank from the mark to the current location.
  5. You can paste those lines wherever you want with p

Similarly, d'k will cut/delete the lines from the current location to the mark.

Comments

 TO DO 

  • Mention the new relative line number feature of Vim 7.3. Then you can delete a number of lines with no counting anyway.

Be sure to check out visual mode. V will allow to select a range of lines, which you can then "ay, etc. This is one of the coolest features of vim.


A related thought:
I like to think of " as into and ' as till.
So, something like "ay'k can be thought of as "into a yank till k"


I normally don't count the lines, but use a range using line numbers like ".,100y" ('.' means line number at cursorpos). The range can be relative (".,+5"), of course you know the number of lines then. So I don't have to move the cursor around just for yanking and put it again to the position whre I want to drop the lines.

Visual marking with the mouse is a powerful alternative, because you don' have to copy/delete complete lines. You also can visually mark rectangle blocks of text by pressing <CTRL-V> in visual mode.

Remember: Vim automatically copies the visually marked text, so you can simply drop it by clicking the middle mouse button at cursor position without using named registers.


Vim doesn't automatically copy the selected text unless 'clipboard' and 'guioptions' settings have specific values. (I believe they are autoselect and a, respectively.)


:help 'guioptions' Only 'a' needs to be added. My guioptions is 'gmrLtTa', clipboard is empty.


Other good way is use / to find the place to which delete/copy, e.g., d/This sentence should be left<CR>. For smaller deletes, dt<letter> and df<letter> are also useful.


An easier-to-remember way:
Forget about registers. Go to desired start line, hit ma ("mark this line as 'a'"), then go to desired end line, and hit y'a or d'a ("yank or delete to the line marked 'a'"). Paste using p.

I just updated the main how-to to reflect this simpler method.

A character-level way: (not line-level)
Go to desired start character, hit ma (same as above), then go to desired end character (can be in a different line), and hit y`a or d`a (notice that it's the "tick", not the "apostrophe"). Paste using p.


Go to the start of the block and mark it as mx then go to the end of block and mark it as my.

Do `x (move to start of block), then do y`y (copy the block) or d`y (delete the block).


Cool story bros, but emacs is way easier... C-<SPC> to set mark, move to end of region, C-w to kill region, C-y to yank region back.

I know you're trolling, and I know this particular page needs work because the main tip overcomplicates a very simple issue, but I can't resist:
  • Emacs: <C-Space>, Vim: ma
  • Emacs, Vim: move to end of region
  • Emacs: <C-w>, Vim: d'a (Emacs one keystroke ahead)
  • Emacs: <C-y>, Vim: p (Vim catches up)
Result: tie.
Or you could use the "visual mode" comment:
  • Emacs: <C-Space>, Vim: V (tie, because that's Shift+v)
  • Emacs, Vim: move to end of region
  • Emacs: <C-w>, Vim: d (Vim ahead by one)
  • Emacs: <C-y>, Vim: p (Vim ahead by two)
Result: Vim Wins! Nice try!
I'm sure there are ways in both editors to make this even faster, and I don't want to get into it, but Emacs is certainly not "way easier" for this task.
--Fritzophrenic 20:18, November 18, 2010 (UTC)