Tagged Questions
1
vote
2answers
63 views
How to enable map command in vim?
How to enable map command only when filetype is 'perl'?
something like:
if(&ft=='perl')
map ,pt <ESC>:%! perltidy<CR>
endif
but it doesn't work.
2
votes
4answers
228 views
Vim like Perl IDE [closed]
I use Vim and vim-script "perl-support" for Perl programming. But in the perlsupport like Perl Vim IDE I couldn't find a feature for show all functions and variables in my script. Are there any other ...
0
votes
1answer
351 views
VIM: Perl interface, passing a variable to Perl and reading a vim variable from Perl
I use a Perl(loader.vim) script to load VIM modules: (.vimrc) source /whatever/loader.vim
loader.vim:
function! LoadBundles()
perl HERE
while(</root/.vim/bundle/*/plugin/*>) {
my ($path, ...
17
votes
1answer
4k views
How do I enable automatic folds in Vim?
How do I enable automatic folding in Vim? set foldmethod=syntax doesn't seem to do much of anything.
1
vote
1answer
217 views
get perl-script output into vimscript
I have tried the following:
:let @0 = system('perl /home/hermann/hi.pl')
:echo @0
Having hi.pl like this:
\#!/usr/bin/perl
exit(34);
But I dont get 34 into @0, I get nothing.
How do I return a ...
5
votes
2answers
492 views
vimscript buffer to get output of perl script
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 ...
1
vote
2answers
409 views
vimscript copy paste variable
i have the following command in my .vimrc:
nmap gtb texecute "!perl /home/hermann/hi.pl ".shellescape(getline('.'), 1)
it executes a perl script and sends whichever line the cursor is over, to it.
...