The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views
+50

How to fix a RubyGems.org project page after yanking a gem?

I have a gem published here: https://rubygems.org/gems/rangy-rails/ When I first released it in March 2013 I later realized that I had set an incorrect version. I immediately yanked the gem and ...
0
votes
2answers
49 views

Pasting text in vim. A tedious operation?

I've been using vim for somewhat longer than a year now and during this time I have never feel really comfortable with the way vim works with yanking and pasting text (or maybe it is just me not using ...
2
votes
3answers
51 views

how to yank a code block without folded content?

I write a blog that describe the fold of vim. So I need the code like this. +-- 15 lines: set_up_socket_dir () {-------------------------------------------- But when I yank the line, actually yank ...
0
votes
1answer
55 views

Change location of vim yankring history file

The yankring plugin for Vim creates a file in my home directory called yankring_history_v2.txt. How do I tell the plugin to store this file in another location?
1
vote
3answers
75 views

How I yank a function in a java code using vim

Java has curly braces that encapsulate the entire class definition. So when using the parenthsis ({ or }) key in vim, it goes to the end of the class instead of going to the next blank line or the end ...
4
votes
1answer
103 views

“yank” does not paste text when using Emacs over SSH

When I tried to run emacs on a remote server through ssh, the C-y (even M-x yank) can't work. Every time I press C-y, it says "Mark set", but nothing else happens. I'm working under Linux and the ...
0
votes
1answer
53 views

How to yank in a search in an emacs lisp function

(defun search-for-what-is-just-killed () (interactive) (search-forward latestkillringvariable? nil t) ) How to use "yank" in an emacs lisp function?
3
votes
1answer
183 views

How to copy/paste a region from emacs buffer with line + file reference?

From time to time I see people pasting portions of code with reference to the file name and line number. Something like ;; ----- line:3391 file: simple.el.gz -----;;; (if (eq last-command ...
2
votes
3answers
85 views

How to yank current line and the line above it?

What I need is how to yank the current-line and the lines above it. Example: #3 My test line #4 Line above current line #5 My current line |(cursor) #6 Line below current line So, how do I yank ...
0
votes
1answer
244 views

How to map yank to OS's clipboard in Vim? [duplicate]

Possible Duplicate: vim: copy selection to OS X clipboard While I succeeded to map paste from clipboard (nmap <leader>p "*p), the same for yank (nmap <leader>y "*y) doesn't seem ...
6
votes
4answers
230 views

In Vim is there a corresponding change (c) command for paste (p)?

With insertions, it is very easy to both wipe out a word/section and insert over it, like so cw delete until end of word (with space) then go to insert mode ce delete until end of word (without ...
8
votes
3answers
947 views

How can I make vim remember past yanks? (Or configure YankRing to do less.)

When I delete something in vim, it's added to the numbered registers. The last item I yanked is in register 0. How can I get vim to automatically remember the last 10 yanks too? I've tried ...
0
votes
1answer
32 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
91 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 ...
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 ...
21
votes
4answers
526 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 ...
6
votes
1answer
511 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 ...
14
votes
3answers
5k 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 ...
47
votes
3answers
8k 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. ...