Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
if you have already executed you can type q: and open a buffer with the commands, so you can copy them there as usual. – Eric Fortis Aug 13 '11 at 0:41

2 Answers

up vote 6 down vote accepted

Run the command, switch to an appropriate buffer (containing your .vimrc, in this case) and paste the whole command from the : register typing in Normal mode

":p

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 :help cmdwin). To open it from Normal mode use the q: command, to do the same from Command-line mode press the key combination specified by cedit option (Ctrl+F by default).

share|improve this answer

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 :help cmdwin for more information on the command window.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.