Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Tip 876 Printable Monobook Previous Next

created 2005 · complexity basic · author Dane Summers · version 6.0


Here are two mappings that help copy SQL queries from gvim to other applications running under Windows.

"Select all of current paragraph.
:map <C-S-v> (V)

"Copy all of current paragraph to clipboard.
:map <C-S-v> (V)*y''

 TO DO 
Fix above:

  1. The ( and ) move by a sentence, not a paragraph.
  2. Tip should use vip to select a paragraph.
  3. Fix the key used for the mapping.

Comments

You can select a paragraph by typing vip or vap

See :help v_ip (vip = visual inner paragraph).

In general, use :help v_<whatever> for help on <whatever> in visual mode.

Or :help c_<whatever> for the command line, or :help i_<whatever> for insert mode.


Advertisement