3
votes
1answer
37 views

Internal vim command output to external application

Say that I run :set all inside vim in command mode, this command outputs a lot of stuff as expected, how i can redirect this output to an external application capable of reading an incoming buffer, ...
0
votes
2answers
66 views

How do I paste to console Vim from the system clipboard?

I can copy text from Vim to other Mac applications with "*y. But when I try to paste into Vim, from TextEdit for example, I cannot paste text with "*p. Is there some setting that I missed?
1
vote
2answers
109 views

Vim: Use + as default register only for yank command

I'd like to use + register (system clipboard) only for yank command (that is, don't overwrite this register on dd or other commands). :set clipboard+=unnamed won't work, because it introduces dd ...
4
votes
1answer
54 views

How can I search for and then copy the lines in vi/vim?

I guess it is better to explain with an example, so here it is: My useful line. Some useless line. Some other useless line. Another useful line - oh I want this! This is useful, I want this too! In ...
4
votes
1answer
169 views

VIM pasting from system clipboard in insert mode and then repeat (.) fails

I'm in in MacVim, but I'm guessing this applies to gVim as well. In insert mode, if I paste from the system clipboard ⌘-v then get out Esc then repeat . all it does is move the cursor back a space. ...
12
votes
5answers
3k views

How to make vim paste from (and copy to) system's clipboard?

Apart from other editors, vim stores the copied text into its own clipboard. So, its very hard to me to copy some text from any webpage and paste it in the current file. If so happens I have to either ...
0
votes
1answer
246 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 ...
2
votes
1answer
1k views

Compile vim with clipboard and xterm

I want to compile the current version of vim with: +clipboard +xterm_clipboard and ruby support But every time I compile it the clipboard and the xterm_clipboard options aren't enabled. Is there ...
0
votes
1answer
90 views

Macvim: Modify the content of the clipboard register before pasting it

Let us assume that I select some text in Safari and copy it to the clipboard, for example "foo, bar" (without the quotation marks). I can see now that it is available in Macvim in the "* register by ...
0
votes
2answers
512 views

Copy into the system clipboard from local vim on mac

It seems like versions of this question have been asked here before, but I haven't been able to glean from them the exact response to what I am looking for. Say I open up a .txt file via vim on my ...
1
vote
1answer
543 views

gvim auto copy selected text to system clipboard (to share it with apps )

I wonder, how i can enable auto copy of selected text into '+' register in Ubuntu (to share clipboard between apps)? On win XP, i have set guioptions+=a and its works perfectly, but not in ...
8
votes
1answer
1k views

Vim and matlab GUI - Emulate matlab Run (<F5>) with Vim

I'm using linux and gvim/vim as external editor for matlab. Using matlab editor you can run a file by pressing F5. I'm trying to reproduce this with gvim-gtk(official debian packages). I know it is ...
2
votes
4answers
938 views

Vim: yank Regex match to +clipboard

Example :%y+ yanks to external +clipboard. Now I want results by regexes such as ^\S\+ to the external +clipboard. How? Trial 1. [Fail] :g@^\S\+@y+ Trial 2. [Fail] :^\S\+y+
1
vote
2answers
403 views

vim keybindings to use system clipboard mac

Since vim doesn't support native clipboard on OS X by default, I decided to create some keybindings to emulate it. I started with such a command, which passes visual selection to pbcopy and replaces ...
3
votes
3answers
541 views

OSX VIM clipboard support

Does anyone here know why on OSX, clipboard is not supported in VIM editor? and what is the impact of compile from source to replace the existing binary? Thanks,
2
votes
2answers
360 views

Run bash command on Vim and copy result to clipboard

How can I create a Vim command and copy it's results to clipboard? I want to convert Markdown to HTML and copy the result to the clipboard. So far I got: nmap md :%!/bin/markdown/Markdown.pl ...
3
votes
5answers
1k views

Vim at Ubuntu 11.04: Working with clipboard of Unity

The problem is, the old-way method to work with X11 clipboard (through "plus" register) doesn't work in Unity. Has anyone met the problem? And how it was solved?
3
votes
1answer
239 views

VIM: append to clipboard

I know how to copy to clipboard but how can I append to clipboard? p.e. I use this in my code let @+ = my_expression but that overwrites the clipboard. I know that I can use the register a-z ...
0
votes
2answers
269 views

Empty register in vimscript

How do I empty a register if the user enters the name of the register? p.e. let r = inputdialog(toregister) let @r = "" (r = character received from inputdialog) This doesn't work either: ...
4
votes
3answers
317 views

Vim: persistent search buffer between vim instances (in Ubuntu)

I have two separate instances of Vim running. I would like to set up my system so that when I search for something in one Vim (using /, ?, * or #), then press n or N in the other Vim, it searches for ...
12
votes
5answers
4k views

gvim: Easy copying into system clipboard

I am using gVim on Ubuntu 10.10. I want to copy (yank) text to the system clipboard, so that the copied text is available in other applications. This works with "+y. But I want to have it working ...
5
votes
3answers
3k views

Copying stuff from vim running in putty

I am running Vim 6.3 through putty and putty connection manager. I have the mouse option set (set mouse = a). I am able to paste things from the (windows) clipboard to vim by but selecting text in ...
0
votes
3answers
914 views

vim — copy to system clipboard in OpenSuSE

I've tried the methods mentioned at http://stackoverflow.com/questions/677986/vim-copy-selection-to-os-x-clipboard, but neither the * or + register seem to be working for me. I'm on OpenSuSE 11.3, and ...
3
votes
3answers
939 views

Paste from clipboard in vim script

I want to write a vim function that includes pasting from the clipboard (windows if it matters) I think it should be something like function MyPastingFunc() "+p "paste from clipboard "do more ...
5
votes
2answers
3k views

Copy text from Vim 7.2 running in xterm to windows clipboard

I'm using Vim 7.2 , compiled with +xterm_clipboard , in a xterm through putty . I've put set clipboard=unnamed in .vimrc , and from what i've read in other threads , this should put all yanks/deletes ...
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. ...
35
votes
9answers
13k views

vim - yank entire file

I often write something in gvim, then need to copy-paste it into another application. Is there an easy way to yank the entire file? I usually do something like this, but is there a better way that ...
41
votes
12answers
18k views

vim: copy selection to OS X clipboard

There must be a really simple solution here that I'm missing: Say you've got an area selected in vim. How can you copy it into the OS X clipboard? (Hint: the OS X clipboard can be written to via ...
1
vote
2answers
991 views

Pasting functions from system clipboard to gVIM

The following is the contents of the Windows System Clipboard :function CurrentLineLength : len = strlen(getline(".")) : return len :endfunction I hit the colon and then control r I then hit ...