I use gvim to store recipes of commands that I will execute, depending on output. Currently, I select the text in gvim and paste the commands into a terminal console, but I bet
(if you mean the OS command line, see below).
For parts of lines (i.e. no end of line character), you could do something like this:
" Visually select lines, then:
y:<C-R>"<ENTER>
where <C-R>
means press Ctrl+R. The y
'yanks' the selected text, the :
enters command mode, <C-R>"
pulls the contents of the "
(last yanked text) register onto the command line and <ENTER>
(obviously) runs the command.
If you want to do line-wise stuff, it's a bit more complicated (as the command line doesn't like ^M
s in the command). I'd recommend something like this in your vimrc:
function! RunCommands()
exe getline('.')
endfunction
command -range RunCommands <line1>,<line2>call RunCommands()
vmap ,r :RunCommands<CR>
Select the lines (after restarting vim) and press ,r
.
Another way that you may find useful is to copy the lines you want, hit q:
to open the command line window and paste the lines you want into there and then move the cursor over the line you want and press ENTER. This has the advantage that you can edit the command before pressing ENTER. It'll only run one command at a time.
Use the function I listed above, but instead of:
exe getline('.')
use
call system(getline('.'))
or, if you want to see the result:
echo system(getline('.'))
or
echomsg system(getline('.'))
:help :echo
:help :echomsg
:help :messages
:help :vmap
:help :command-range
:help :command
:help :function
:help c_CTRL-R
:help :exe
:help getline()
:help system()
If you are using the vim GUI, you can do set guioptions+=a
. This way, any highlighted text inside gvim in visual mode gets pasted to a clipboard.