I type this command in Vim:
:nmap <CR> <C-]>
Then I want to copy this line and put it into my .vimrc How can i select and copy the whole line in commandline mode ?
Thanks
|
I type this command in Vim:
Then I want to copy this line and put it into my .vimrc How can i select and copy the whole line in commandline mode ? Thanks |
|||
|
Run the command, switch to an appropriate buffer (containing your
As simple as that. If the command is far back in time, rerun that command by recalling it from
history (typing the first few letters and pressing Up) and use the
above method. In case when this is unhandy, use command-line window (see
|
||||
|
|
|
You can type Ctrl-F while in command mode to open up a special window with all previous commands. Then you can scroll to the desired line, hit yy to copy that line, then press Ctrl-C to return to command mode, and then ESC to return to normal mode. From there you can paste. See |
|||
|
|
q:and open a buffer with the commands, so you can copy them there as usual. – Eric Fortis Aug 13 '11 at 0:41