Searched refs:perlpath (Results 1 – 3 of 3) sorted by relevance
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | perl.vim | 46 if !exists("perlpath") 50 let perlpath = system('perl -e "print join(q/,/,@INC)"') variable 52 let perlpath = system("perl -e 'print join(q/,/,@INC)'") variable 54 let perlpath = substitute(perlpath,',.$',',,','') variable 56 let perlpath = ".,," variable 61 let perlpath = ".,," variable 65 " Append perlpath to the existing path value, if it is set. Since we don't 66 " use += to do it because of the commas in perlpath, we have to handle the 70 let &l:path=perlpath 72 let &l:path=&g:path.",".perlpath [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | vim.vim | 707 let s:perlpath= fnameescape(expand("<sfile>:p:h")."/perl.vim") 708 if !filereadable(s:perlpath) 709 for s:perlpath in split(globpath(&rtp,"syntax/perl.vim"),"\n") 710 if filereadable(fnameescape(s:perlpath)) 711 let s:perlpath= fnameescape(s:perlpath) 716 if (g:vimsyn_embed =~# 'p' && has("perl")) && filereadable(s:perlpath) 719 exe "syn include @vimPerlScript ".s:perlpath 727 unlet s:perlpath
|
| /vim-8.2.3635/src/ |
| H A D | Makefile | 2569 …perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(D…
|