Tagged Questions
9
votes
2answers
181 views
Combining registers in vim
Is it possible to combine registers in vim? For example, if I have registers "a, "b, "c, can I easily create register "d which is a concatenation of all three? That is, without pasting them all and ...
2
votes
2answers
65 views
In vim, how can I add a carriage return to a register using setreg?
I have this command in my .vimrc:
vip:normal @g<CR>
When I set the register 'g' by typing in the buffer, like this, it works:
qg<CR>jq
If I type :registers, it shows:
--- Registers ...
1
vote
2answers
260 views
Vim: How to handle newlines when storing multiple commands in registers?
I have a file where I store snippets of vim commands. When I need a snippet, I yank it and then execute it with @". The snippets are stored as a script, one line per command, like this:
:s/foo/bar/g
...