The vim-registers tag has no wiki summary.
-4
votes
2answers
193 views
VIM to delete a range of lines into a register
I am trying to delete a range of lines into a register a. Is this the easiest way to achieve this?
:5,10d a
-1
votes
2answers
49 views
How to save registers in VIM [closed]
I am new to VIM and I use the command
qa
to start recording the operations in register a and the following command
q
to stop saving. And the following command to use the operations in a:
@a
...
3
votes
3answers
88 views
Write to two registers at the same time in Vim
I'm using:
set clipboard=unnamed
So that cut and copied selections go to the * register, which is conveniently linked to the x clipboard (I'm using Linux).
I would like to have it also in the + ...
1
vote
1answer
44 views
VIM function to create CMakeLists.txt
I'm new to Vim, and I want to create a Vim function to make a CMake file.
It doesn't work, and I don't know how should I do it, so the relevant part of my code is:
function! CMake_CV()
let @d=@%:t
...
2
votes
2answers
49 views
Vim registers standards
I was thinking of setting my registers to equal common coding techniques. For
example, I was thinking of doing this:
:let @i = "int i=0;"
Then I would set f for for loop, w for while loop etc. Is ...
2
votes
2answers
177 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 ...
2
votes
1answer
250 views
Same registers for different VIM tabs
I'm trying to make a copy paste from 1 file I have opened in a tab to another file I have opened in another tab.
So I use the visual block to get my selection, yank it, but when I switch to other ...
2
votes
4answers
308 views
remove newlines from a register in vim?
I have a long list of different names of universities. I'm trying to build a synonym table by collating lines with certain unique keywords; that is, in the file, I'll identify that Harvard is the ...
1
vote
2answers
331 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
...
3
votes
2answers
523 views
Vim Register Use in Ex Mode
Potentially 2 questions in one. I would like to know how to reference a register in Ex mode.
For instance, I'm editing a file and I want to save the file with a timestamp (or just datestamp really) ...
9
votes
2answers
297 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 ...
24
votes
2answers
2k views
Copy from one register to another
How to copy the contents of one register to another without pasting on clipboard? I'd yanked one text and it got yanked in the default " register. Now I want to copy another text without ...