Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
3answers
4k views

Yank file name / path of current buffer in Vim

Assuming the current buffer is a file open for edit, so :e does not display E32: No file name. I would like to yank one or all of: The file name exactly as show on the status line, e.g. ...
13
votes
4answers
244 views

Emacs: How to yank the last yanked text regardless of subsequent kills?

I often find myself repeatedly yanking something after doing some kills and it becomes a process like: C-y C-y M-y C-y M-y M-y C-y M-y M-y M-y Each time I kill some text it pushes the first kill ...
10
votes
3answers
2k views

How can I save a block in Visual Mode to a file in VIM?

The title is very description. Just in case, I will take an example: START BLOCK1 something END BLOCK1 START BLOCK2 something somenthing... END BLOCK2 I select the BLOCK1 in visual mode I yank it ...
7
votes
3answers
828 views

Vim yanking range of lines

This is my first post on stack, so please bear with me. I'm a C# developer who has just recently decided to expand my knowledge of the tools available to me. The first tool I've decided to learn is ...
2
votes
1answer
143 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
1answer
174 views

Vim: Replace selection with default buffer without overwriting the buffer

Here is my problem: I am in visual mode. I select text and copy it to the buffer. ((y)ank) I select another text which I want to replace and paste the buffer. ((p)aste) Now the second selection ...
0
votes
1answer
14 views

Vi how to yank an aren without specifying a buffer and paste

I may want to yank (copy?) by marking from certain point to certain point and paste, but I want to do it without specifying any buffer. As we do in gedit by selecting text and copy-paste.
0
votes
2answers
31 views

How to yank between vi editors, without quitting one?

I have opened two vi editors: vi file1 file2. Now file1 opens first, and i want to yank some lines from file1 and put it to file 2 without quitting file1, because more lines can be yanked, so it is ...