Vim Tips Wiki
(tweak + merge info from 200906 (very similar to original))
m (Reverted edits by 61.135.152.211 (talk | block) to last version by JohnBeckett)
(11 intermediate revisions by 7 users not shown)
Line 14: Line 14:
   
 
==How to copy/paste==
 
==How to copy/paste==
Copy a word and paste it over another word:
+
Copy a word and paste it over other words:
  +
{| class="cleartable"
*<tt>yiw</tt> yank inner word (copy word under cursor, say "''first''").
 
*Move the cursor to another word (say "''second''").
+
| style="width:5em" | <code>yiw</code> || yank inner word (copy word under cursor, say "''first''").
  +
|-
*<tt>viwp</tt> select "''second''", then replace it with "''first''".
 
  +
| ... || Move the cursor to another word (say "''second''").
  +
|-
 
| <code>viwp</code> || select "''second''", then replace it with "''first''".
  +
|-
  +
| ... || Move the cursor to another word (say "''third''").
  +
|-
 
| <code>viw"0p</code> || select "''third''", then replace it with "''first''".
  +
|}
   
Copy a line and paste it over another line:
+
Copy a line and paste it over other lines:
  +
{| class="cleartable"
*<tt>yy</tt> yank current line (say "''first line''").
 
*Move the cursor to another line (say "''second line''").
+
| style="width:5em" | <code>yy</code> || yank current line (say "''first line''").
  +
|-
*<tt>Vp</tt> select "''second line''", then replace it with "''first line''".
 
  +
| ... || Move the cursor to another line (say "''second line''").
  +
|-
  +
| <code>Vp</code> || select "''second line''", then replace it with "''first line''".
  +
|-
  +
| ... || Move the cursor to another line (say "''third line''").
  +
|-
  +
| <code>V"0p</code> || select "''third line''", then replace it with "''first line''".
  +
|}
  +
  +
Deleting, changing and yanking text copies the affected text to the unnamed register (<code>""</code>). Yanking text also copies the text to register 0 (<code>"0</code>). So the command <code>yiw</code> copies the current word to <code>""</code> and to <code>"0</code>.
  +
  +
Typing <code>viw</code> selects the current word, then pressing <code>p</code> pastes the unnamed register over the visual selection. The visual selection is deleted to the unnamed register.
  +
  +
== Alternate method ==
  +
  +
An alternate method is to do the paste/replace using <code>cw</code>. This method has the advantage of being easily repeatable using the <code>.</code> repeat command.
  +
  +
{| class="cleartable"
 
| style="width:5em" | <code>yiw</code> || yank inner word (copy word under cursor, say "''first''". Same as above).
  +
|-
  +
| ... || Move the cursor to another word (say "''second''").
  +
|-
  +
| <code>ciw<C-r>0</code> || select "''second''", then replace it with "''first''" If you are at the start of the word then <code>cw<C-r>0</code> is sufficient.
  +
|-
  +
| ... || Move the cursor to another word (say "''third''").
  +
|-
  +
| <code>.</code> || select "''third''", then replace it with "''first''".
  +
|}
   
 
{{todo}}
 
{{todo}}
*"''second''" is now in @"; can repeat with <tt>viw0p</tt>
 
 
*Use with clipboard @+
 
*Use with clipboard @+
*Explain: Use register 2 to insert previously deleted text: <tt>diw"2P</tt>
+
*Explain: Use register 2 to insert previously deleted text: <code>diw"2P</code>
   
 
This process works with any selected text, although it works best if:
 
This process works with any selected text, although it works best if:
 
*The yanked text is characterwise and the replaced text is selected characterwise; ''or''
 
*The yanked text is characterwise and the replaced text is selected characterwise; ''or''
*The yanked text is linewise and the replaced text is selected linewise.
+
*The yanked text is linewise and the replaced text is selected linewise; ''or''
  +
*The yanked text is blockwise and the replaced text is selected blockwise.
   
Typing <tt>yiw</tt> (yank inner word) is an example of a characterwise copy, while <tt>yy</tt> (yank current line) is an example of a linewise copy.
+
Typing <code>yiw</code> (yank inner word) is an example of a characterwise copy, while <code>yy</code> (yank current line) is an example of a linewise copy.
   
If you visually select some text (for example an inner word, <tt>viw</tt>), then press <tt>p</tt>, the selected text is replaced with the contents of the unnamed register; the replaced text is placed in the unnamed register. When text has been selected, pressing <tt>P</tt> is exactly the same as pressing <tt>p</tt> (however, when no text is selected, <tt>P</tt> pastes after the cursor, while <tt>p</tt> pastes before the cursor).
+
If you visually select some text (for example an inner word, <code>viw</code>), then press <code>p</code>, the selected text is replaced with the contents of the unnamed register; the replaced text is placed in the unnamed register. When text has been selected, pressing <code>P</code> is exactly the same as pressing <code>p</code> (however, when no text is selected, <code>P</code> pastes before the cursor, while <code>p</code> pastes after the cursor).
   
 
==Stamping==
 
==Stamping==
With this mapping, you can press <tt>S</tt> to replace the current word with the last yanked text. You can repeat the operation to replace words at different locations (move to another word and press <tt>S</tt>, then move to another word and press <tt>S</tt>, and so on). Each time you press <tt>S</tt>, the yanked text is "stamped" over the current word.
+
With this mapping, you can press <code>S</code> to replace the current word with the last yanked text. You can repeat the operation to replace words at different locations (move to another word and press <code>S</code>, then move to another word and press <code>S</code>, and so on). Each time you press <code>S</code>, the yanked text is "stamped" over the current word.
 
<pre>
 
<pre>
 
nnoremap S diw"0P
 
nnoremap S diw"0P
 
</pre>
 
</pre>
   
The <tt>S</tt> command is then not available – use the equivalent <tt>cc</tt> command instead.
+
The <code>S</code> command is then not available – use the equivalent <code>cc</code> command instead.
   
An alternative mapping uses the black hole register (<tt>"_</tt>) for the deletion so the unnamed register is not changed:
+
An alternative mapping uses the black hole register (<code>"_</code>) for the deletion so the unnamed register is not changed:
 
<pre>
 
<pre>
 
nnoremap S "_diwP
 
nnoremap S "_diwP
 
</pre>
 
</pre>
   
The alternative replaces the current word with the last text that was yanked or deleted. This means that you can copy or delete text from one location, then use that text to replace words in multiple other locations. However, if you delete any more text (for example, if you press <tt>x</tt> to delete an unwanted comma), the ability to easily use the previously-deleted text is lost.
+
The alternative replaces the current word with the last text that was yanked or deleted. This means that you can copy or delete text from one location, then use that text to replace words in multiple other locations. However, if you delete any more text (for example, if you press <code>x</code> to delete an unwanted comma), the ability to easily use the previously-deleted text is lost.
   
In addition to the above, you could use the following to replace visually selected text with the last yanked text. Again, you can quickly repeat this by selecting some more text and pressing <tt>S</tt> to make the same change.
+
In addition to the above, you could use the following to replace visually selected text with the last yanked text. Again, you can quickly repeat this by selecting some more text and pressing <code>S</code> to make the same change.
 
<pre>
 
<pre>
 
vnoremap S "_d"0P
 
vnoremap S "_d"0P
Line 62: Line 98:
 
</pre>
 
</pre>
   
==Rough merge in from tip 1011 (now removed)==
+
==From tip 1011==
 
For those who use visual mode, here are some commands and mappings that may be useful:
 
For those who use visual mode, here are some commands and mappings that may be useful:
   
First of all <tt>gv</tt> reselects the previous visual area.
+
Type <code>gv</code> to reselect the previous visual area.
   
 
Copy the current word or visually selected text to the clipboard:
Prepare a <tt>:command</tt> on the previous visual selected area ('<,'> is slow to type):
 
<pre>
 
map <M-:> :'<,'>
 
</pre>
 
 
Copy the word under cursor in the clipboard:
 
 
<pre>
 
<pre>
 
nnoremap <F4> "+yiw
 
nnoremap <F4> "+yiw
</pre>
 
 
Copy the visual selected area in the clipboard:
 
<pre>
 
 
vnoremap <F4> "+y
 
vnoremap <F4> "+y
 
</pre>
 
</pre>
   
Replace the word under cursor with the content of the clipboard:
+
Replace the current word or visually selected text with the clipboard contents:
 
<pre>
 
<pre>
 
nnoremap <F5> viw"+p
 
nnoremap <F5> viw"+p
</pre>
 
 
Replace the visual selected area with the content of the clipboard:
 
<pre>
 
 
vnoremap <F5> "+p
 
vnoremap <F5> "+p
 
</pre>
 
</pre>
   
Prepare the :command to replace the word under cursor:
+
Prepare a <code>:substitute</code> command using the current word or the selected text:
<pre>
 
nnoremap &lt;S-F4> "+yiw:%s/\<<C-r>+\>/<C-r>+/gc<LEFT><LEFT><LEFT>
 
</pre>
 
 
Prepare the :command to replace the selected area:
 
<pre>
 
vnoremap &lt;S-F4> "+y:%s/\<<C-r>+\>/<C-r>+/gc<LEFT><LEFT><LEFT>
 
</pre>
 
 
I use the clipboard but you can use whatever register you want.
 
 
This puts "" around the word under cursor:
 
<pre>
 
nnoremap <M-"> ciw"<C-r>+"<Esc>
 
</pre>
 
 
This puts "" around the visual selected area:
 
 
<pre>
 
<pre>
vnoremap <M-"> c"<C-r>+"<Esc>
+
nnoremap <F6> yiw:%s/\<<C-r>"\>/<C-r>"/gc<Left><Left><Left>
 
vnoremap <F6> y:%s/\<<C-r>"\>/<C-r>"/gc<Left><Left><Left>
 
</pre>
 
</pre>
   
;Comments
 
 
One key <F7> does everything. Good for inter-window copying and pasting.
 
One key <F7> does everything. Good for inter-window copying and pasting.
 
<pre>
 
<pre>
Line 121: Line 127:
 
"paste (Shift-F7 to paste after normal cursor, Ctrl-F7 to paste over visual selection)
 
"paste (Shift-F7 to paste after normal cursor, Ctrl-F7 to paste over visual selection)
 
nmap <F7> "zgP
 
nmap <F7> "zgP
nmap &lt;S-F7> "zgp
+
nmap <S-F7> "zgp
 
imap <F7> <C-r><C-o>z
 
imap <F7> <C-r><C-o>z
 
vmap <C-F7> "zp`]
 
vmap <C-F7> "zp`]
Line 131: Line 137:
   
 
==See also==
 
==See also==
  +
*[[Repeat last change]]
 
*{{script|id=2703|text=ReplaceWithRegister}} plugin to replace text covered by a motion, entire line(s) or the current selection with the contents of a register; more versatile and covers corner cases better than simple mappings
 
*{{script|id=2703|text=ReplaceWithRegister}} plugin to replace text covered by a motion, entire line(s) or the current selection with the contents of a register; more versatile and covers corner cases better than simple mappings
   
Line 146: Line 153:
 
*[[VimTip47|47 Swapping characters, words and lines]]
 
*[[VimTip47|47 Swapping characters, words and lines]]
 
*[[VimTip191|191 Transposing]]
 
*[[VimTip191|191 Transposing]]
*[[VimTip312|312 Copy, cut and paste]]
 
*[[VimTip356|356 Quick yank and paste]]
 
*[[VimTip386|386 Cut/copy and paste using visual selection]]
 
 
*[[VimTip438|438 Search and replace in a visual selection]]
 
*[[VimTip438|438 Search and replace in a visual selection]]
 
*[[VimTip646|646 Moving lines up or down in a file]]
 
*[[VimTip646|646 Moving lines up or down in a file]]
 
*[[VimTip1584|1584 Visual selection]]
 
*[[VimTip1584|1584 Visual selection]]
Some of the above are for copy/paste/move, and some for visual selection more generally. I hope some of these can be merged, while others will be "see also". [[User:JohnBeckett|JohnBeckett]] 03:36, September 23, 2009 (UTC)
+
I hope some of these can be merged, while others will be "see also".
  +
  +
Copy/paste tips:
  +
*[[VimTip66|66 Transfer text between two Vim instances]]
  +
*[[VimTip71|71 Transfer text between two gvim sessions using clipboard]]
  +
*[[VimTip261|261 Close windows from gvim popup menu]]
 
*[[VimTip312|312 Copy, cut and paste]]
  +
*[[VimTip344|344 Cut or copy lines without counting the lines]]
 
*[[VimTip356|356 Quick yank and paste]]
 
*[[VimTip386|386 Cut/copy and paste using visual selection]]
  +
*[[VimTip432|432 Putting the current file on the Windows clipboard]]
  +
*[[VimTip471|471 Using the mouse for Vim in an xterm]]
  +
*[[VimTip478|478 Copy the search results into clipboard]]
  +
*[[VimTip829|829 Copy and paste between Vim instances]]
  +
*[[VimTip834|834 Word-wise cut, copy and paste]]
  +
*[[VimTip964|964 GNU/Linux clipboard copy/paste with xclip]]
  +
*[[VimTip984|984 Accessing the system clipboard]]
  +
*[[VimTip1199|1199 Unconditional linewise or characterwise paste]]
  +
*[[VimTip1268|1268 Copy and paste between sessions using a temporary file]]
  +
*[[VimTip1593|1593 Smart paste]]
  +
*[[VimTip1623|1623 Using the Windows clipboard in Cygwin Vim]]
  +
I'm parking the copy/paste list here; later will work out which is "main" copy/paste tip and will move list there. [[User:JohnBeckett|JohnBeckett]] 11:24, September 28, 2009 (UTC)
  +
:I'd like for this tip to remain about copy/paste as it relates to visual mode, and we should have at least one other (separate) tip on the system clipboard (maybe more than one if specific systems have problems). One more that is a general "how to copy/paste" that also discusses use of registers would be good too. I don't want to see too much combination though, or the tip will probably become too big. --[[User:Fritzophrenic|Fritzophrenic]] 16:27, October 1, 2009 (UTC)

Revision as of 15:18, 25 June 2013

Tip 605 Printable Monobook Previous Next

created 2003 · complexity basic · author Yang Xiangyu · version 6.0


A common requirement, particularly when programming, is to copy or delete text from one location, and use what was copied or deleted to replace text in one or more other locations. This tip describes how this operation is performed using standard Vim techniques, and with some tricks that may make it easier.

How to copy/paste

Copy a word and paste it over other words:

yiw yank inner word (copy word under cursor, say "first").
... Move the cursor to another word (say "second").
viwp select "second", then replace it with "first".
... Move the cursor to another word (say "third").
viw"0p select "third", then replace it with "first".

Copy a line and paste it over other lines:

yy yank current line (say "first line").
... Move the cursor to another line (say "second line").
Vp select "second line", then replace it with "first line".
... Move the cursor to another line (say "third line").
V"0p select "third line", then replace it with "first line".

Deleting, changing and yanking text copies the affected text to the unnamed register (""). Yanking text also copies the text to register 0 ("0). So the command yiw copies the current word to "" and to "0.

Typing viw selects the current word, then pressing p pastes the unnamed register over the visual selection. The visual selection is deleted to the unnamed register.

Alternate method

An alternate method is to do the paste/replace using cw. This method has the advantage of being easily repeatable using the . repeat command.

yiw yank inner word (copy word under cursor, say "first". Same as above).
... Move the cursor to another word (say "second").
ciw<C-r>0 select "second", then replace it with "first" If you are at the start of the word then cw<C-r>0 is sufficient.
... Move the cursor to another word (say "third").
. select "third", then replace it with "first".

 TO DO 

  • Use with clipboard @+
  • Explain: Use register 2 to insert previously deleted text: diw"2P

This process works with any selected text, although it works best if:

  • The yanked text is characterwise and the replaced text is selected characterwise; or
  • The yanked text is linewise and the replaced text is selected linewise; or
  • The yanked text is blockwise and the replaced text is selected blockwise.

Typing yiw (yank inner word) is an example of a characterwise copy, while yy (yank current line) is an example of a linewise copy.

If you visually select some text (for example an inner word, viw), then press p, the selected text is replaced with the contents of the unnamed register; the replaced text is placed in the unnamed register. When text has been selected, pressing P is exactly the same as pressing p (however, when no text is selected, P pastes before the cursor, while p pastes after the cursor).

Stamping

With this mapping, you can press S to replace the current word with the last yanked text. You can repeat the operation to replace words at different locations (move to another word and press S, then move to another word and press S, and so on). Each time you press S, the yanked text is "stamped" over the current word.

nnoremap S diw"0P

The S command is then not available – use the equivalent cc command instead.

An alternative mapping uses the black hole register ("_) for the deletion so the unnamed register is not changed:

nnoremap S "_diwP

The alternative replaces the current word with the last text that was yanked or deleted. This means that you can copy or delete text from one location, then use that text to replace words in multiple other locations. However, if you delete any more text (for example, if you press x to delete an unwanted comma), the ability to easily use the previously-deleted text is lost.

In addition to the above, you could use the following to replace visually selected text with the last yanked text. Again, you can quickly repeat this by selecting some more text and pressing S to make the same change.

vnoremap S "_d"0P

If you want to replace visually selected text with the last yanked or deleted text, use:

vnoremap S "_dP

From tip 1011

For those who use visual mode, here are some commands and mappings that may be useful:

Type gv to reselect the previous visual area.

Copy the current word or visually selected text to the clipboard:

nnoremap <F4> "+yiw
vnoremap <F4> "+y

Replace the current word or visually selected text with the clipboard contents:

nnoremap <F5> viw"+p
vnoremap <F5> "+p

Prepare a :substitute command using the current word or the selected text:

nnoremap <F6> yiw:%s/\<<C-r>"\>/<C-r>"/gc<Left><Left><Left>
vnoremap <F6> y:%s/\<<C-r>"\>/<C-r>"/gc<Left><Left><Left>

One key <F7> does everything. Good for inter-window copying and pasting.

"copy
vmap <F7> "+ygv"zy`>
"paste (Shift-F7 to paste after normal cursor, Ctrl-F7 to paste over visual selection)
nmap <F7> "zgP
nmap <S-F7> "zgp
imap <F7> <C-r><C-o>z
vmap <C-F7> "zp`]
cmap <F7> <C-r><C-o>z

"copy register
autocmd FocusGained * let @z=@+

See also

  • Repeat last change
  • ReplaceWithRegister plugin to replace text covered by a motion, entire line(s) or the current selection with the contents of a register; more versatile and covers corner cases better than simple mappings

References

Comments

 TO DO 

  • Prune out any misguided information.
  • That will leave some notes on copying a word (or selected text) and pasting it to replace another word (or selected text).
  • There will also be some notes on visual mode which should be moved elsewhere (possibly 1584).

Related:

I hope some of these can be merged, while others will be "see also".

Copy/paste tips:

I'm parking the copy/paste list here; later will work out which is "main" copy/paste tip and will move list there. JohnBeckett 11:24, September 28, 2009 (UTC)

I'd like for this tip to remain about copy/paste as it relates to visual mode, and we should have at least one other (separate) tip on the system clipboard (maybe more than one if specific systems have problems). One more that is a general "how to copy/paste" that also discusses use of registers would be good too. I don't want to see too much combination though, or the tip will probably become too big. --Fritzophrenic 16:27, October 1, 2009 (UTC)