Vim Tips Wiki
(reword and add expr mapping)
(→‎Comments: remove the incorrect suggestion but retain link to vim_use topic)
(7 intermediate revisions by 5 users not shown)
Line 13: Line 13:
 
Here is an easy way to select the text you just pasted. For example, you may want to paste some text, then select it for [[Shifting blocks visually|indenting]], or formatting, or performing a [[Search and replace in a visual selection|substitution]].
 
Here is an easy way to select the text you just pasted. For example, you may want to paste some text, then select it for [[Shifting blocks visually|indenting]], or formatting, or performing a [[Search and replace in a visual selection|substitution]].
   
A simple procedure would be to press <tt>`[</tt> to jump to the start of the text you last changed. For example, you may use <tt>ciw</tt> to change inner word, or <tt>p</tt> to paste, then scroll elsewhere. Typing <tt>`[</tt> would jump to the start of the word you just changed, or to the start of the text you just pasted (see [[Using marks|marks]]).
+
A simple procedure would be to press <code>`[</code> to jump to the start of the text you last changed. For example, you may use <code>ciw</code> to change inner word, or <code>p</code> to paste, then scroll elsewhere. Typing <code>`[</code> would jump to the start of the word you just changed, or to the start of the text you just pasted (see [[Using marks|marks]]).
   
 
To select the last changed text (or the text that was just pasted), use a mapping like this in your [[vimrc]]:
 
To select the last changed text (or the text that was just pasted), use a mapping like this in your [[vimrc]]:
Line 20: Line 20:
 
</pre>
 
</pre>
   
After pasting, type <tt>gp</tt> to select the pasted text in visual mode. This is similar to the standard <tt>gv</tt> which you can type to select the last visually-selected text.
+
After pasting, type <code>gp</code> to select the pasted text in visual mode. This is similar to the standard <code>gv</code> which you can type to select the last visually-selected text.
   
 
Following is a more elaborate alternative:
 
Following is a more elaborate alternative:
 
<pre>
 
<pre>
nnoremap <expr> gp '`[' . visualmode() . '`]'
+
nnoremap <expr> gp '`[' . strpart(getregtype(), 0, 1) . '`]'
 
</pre>
 
</pre>
   
With this alternative, typing <tt>gp</tt> will select the last changed (or pasted) text, and the visual mode will be the same as was last used in the buffer. For example, you may press <tt>v</tt> to start character-wise visual selection, then move the cursor and press <tt>y</tt> to yank (copy) the selected text. Elsewhere in the buffer, you may press <tt>p</tt> to paste the text. In that case typing <tt>gp</tt> would select the pasted text character-wise.
+
With this alternative, typing <code>gp</code> will select the last changed (or pasted) text, and the visual mode will be the same as was last used. For example, you may press <code>v</code> to start character-wise visual selection, then move the cursor and press <code>y</code> to yank (copy) the selected text. Elsewhere, you may press <code>p</code> to paste the text. In that case typing <code>gp</code> would select the pasted text character-wise.
   
Repeating this example, but using <tt>V</tt> would use line-wise visual selection (whole lines would be selected). Similarly, using Ctrl-V (or Ctrl-Q if you use Ctrl-V for pasting) would use block-wise visual selection.
+
Repeating this example, but using <code>V</code> would use line-wise visual selection (whole lines would be selected). Similarly, using Ctrl-V (or Ctrl-Q if you use Ctrl-V for pasting) would use block-wise visual selection.
   
The mapping uses "<tt><expr></tt>" which means that when you type <tt>gp</tt>, the mapping is evaluated as an expression, then the result is used. For example, if you last used <tt>v</tt> for visual mode, the function <tt>visualmode()</tt> will return <tt>v</tt> (a single character), and the result of the mapping expression would be <tt>`[v`]</tt> (the same as the first mapping given above). The dot operator (<tt>.</tt>) concatenates the strings.
+
The mapping uses "<code><expr></code>" which means that when you type <code>gp</code>, the mapping is evaluated as an expression, then the result is used. The dot operator (<code>.</code>) is used to concatenate three strings. The first string (without quotes) is <code>`[</code> and the third string is <code>`]</code>. The second string is the first character ({{help|strpart()}}) of the result from calling <code>getregtype()</code> which is the "type" of the last register used in a normal mode command. The type is 'v', 'V', or Ctrl-V depending on whether the text in the register resulted, respectively, from a character, a line, or a block operation. ({{help|getregtype()}})
  +
  +
For example, if you type <code>yiw</code> to copy a word, the function <code>getregtype()</code> will return <code>v</code>, and the result of the mapping expression will be <code>`[v`]</code> (the same as the first mapping given above). However, if you type <code>3Y</code> to copy three lines, the result will be <code>`[V`]</code> (linewise).
   
 
==References==
 
==References==
 
*{{help|:map-expression}}
 
*{{help|:map-expression}}
*{{help|visualmode()}}
 
   
 
==Comments==
 
==Comments==
  +
An anonymous user mentioned the <code>`[</code> and <code>`]</code> not working as documented in the Vim help, making this mapping fail. Probably that user has a plugin or mapping interfering; please refer to https://groups.google.com/d/topic/vim_use/qTc3SPuuhoQ/discussion if you suffer the same problem. --[[User:Fritzophrenic|Fritzophrenic]] ([[User talk:Fritzophrenic|talk]]) 14:55, September 24, 2014 (UTC)

Revision as of 14:55, 24 September 2014

Tip 759 Printable Monobook Previous Next

created 2004 · complexity basic · version 6.0


Here is an easy way to select the text you just pasted. For example, you may want to paste some text, then select it for indenting, or formatting, or performing a substitution.

A simple procedure would be to press `[ to jump to the start of the text you last changed. For example, you may use ciw to change inner word, or p to paste, then scroll elsewhere. Typing `[ would jump to the start of the word you just changed, or to the start of the text you just pasted (see marks).

To select the last changed text (or the text that was just pasted), use a mapping like this in your vimrc:

nnoremap gp `[v`]

After pasting, type gp to select the pasted text in visual mode. This is similar to the standard gv which you can type to select the last visually-selected text.

Following is a more elaborate alternative:

nnoremap <expr> gp '`[' . strpart(getregtype(), 0, 1) . '`]'

With this alternative, typing gp will select the last changed (or pasted) text, and the visual mode will be the same as was last used. For example, you may press v to start character-wise visual selection, then move the cursor and press y to yank (copy) the selected text. Elsewhere, you may press p to paste the text. In that case typing gp would select the pasted text character-wise.

Repeating this example, but using V would use line-wise visual selection (whole lines would be selected). Similarly, using Ctrl-V (or Ctrl-Q if you use Ctrl-V for pasting) would use block-wise visual selection.

The mapping uses "<expr>" which means that when you type gp, the mapping is evaluated as an expression, then the result is used. The dot operator (.) is used to concatenate three strings. The first string (without quotes) is `[ and the third string is `]. The second string is the first character (:help strpart()) of the result from calling getregtype() which is the "type" of the last register used in a normal mode command. The type is 'v', 'V', or Ctrl-V depending on whether the text in the register resulted, respectively, from a character, a line, or a block operation. (:help getregtype())

For example, if you type yiw to copy a word, the function getregtype() will return v, and the result of the mapping expression will be `[v`] (the same as the first mapping given above). However, if you type 3Y to copy three lines, the result will be `[V`] (linewise).

References

Comments

An anonymous user mentioned the `[ and `] not working as documented in the Vim help, making this mapping fail. Probably that user has a plugin or mapping interfering; please refer to https://groups.google.com/d/topic/vim_use/qTc3SPuuhoQ/discussion if you suffer the same problem. --Fritzophrenic (talk) 14:55, September 24, 2014 (UTC)