I'm trying to edit the copy-paste buffer:

I have the following command:

nmap gfb :let .shellescape(getreg('0'))=1<br>

that should have put the number 1 into the buffer, which is not happening.

how do i put the output of a perl script into a vimscript buffer?

link|improve this question

78% accept rate
very relevant: stackoverflow.com/questions/2471175/… @" is the copy-paste buffer. – Hermann Ingjaldsson Jan 2 '11 at 16:51
feedback

2 Answers

up vote 2 down vote accepted

To store 1 inside register 0:

:let @0 = 1

To do this in vimscript via perl:

function! Foo()
perl << EOF
    my $foo = 1;
    VIM::DoCommand(':let @0 = ' . $foo);
EOF
endfunction

Then you can call that function:

:call Foo()
link|improve this answer
This is totally in the direction, but i get the following error: E319: Sorry, the command is not available in this version: perl << EOF – Hermann Ingjaldsson Jan 1 '11 at 16:43
the solution to the e319 error was to do: sudo apt-get install vim-full in the shell. but now the let doesn't work. – Hermann Ingjaldsson Jan 2 '11 at 11:58
Just to be clear, you now have a vim with Perl support, which means the perl and doperl commands are now available to you. This won't change the other non-Perl stuff. – Robert Norris Jan 2 '11 at 13:07
feedback

To get the output of an external command into a vim buffer you use system:

:let @0 = system("/bin/ls")
:echo @0

I'm not sure how this relates to Perl exactly. You might want to edit your question to clarify.

link|improve this answer
okey so in order to get the output of a perl scrip i do: :let @0=system('perl /home/hermann/hi.pl') ? – Hermann Ingjaldsson Jan 2 '11 at 0:38
Something like that, yes. Of course system can be used anywhere you can use an expression - its not just for assignment. Try it and see! – Robert Norris Jan 2 '11 at 6:36
:let @0=222 doesn't work anymore, i dont know why but it doesn't change what gets pasted when i press p. it used to though so im not sure whats going on. – Hermann Ingjaldsson Jan 2 '11 at 10:50
"Doesn't work" how, exactly? – Robert Norris Jan 2 '11 at 13:06
the paste array is @", @0 is an array thats always changing and that was confusing me. it works now. – Hermann Ingjaldsson Jan 2 '11 at 17:06
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.