vote up 17 vote down star
13

There are a lot of threads pertaining to how to configure Vim/GVim for Perl development on PerlMonks.org. My purpose in posting this question is to try to create, as much as possible, an ideal configuration for Perl development using Vim/GVim. Please post your suggestions for .vimrc settings as well as useful plugins.

I will try to merge the recommendations into a set of .vimrc settings and to a list of recommended plugins, ftplugins and syntax files.

.vimrc settings

"Create a command :Tidy to invoke perltidy"
"By default it operates on the whole file, but you can give it a"
"range or visual range as well if you know what you're doing."
command -range=% -nargs=* Tidy <line1>,<line2>!
    \perltidy -your -preferred -default -options <args>

vmap <tab> >gv    "make tab in v mode indent code"
vmap <s-tab> <gv

nmap <tab> I<tab><esc> "make tab in normal mode indent code"
nmap <s-tab> ^i<bs><esc>

let perl_include_pod   = 1    "include pod.vim syntax file with perl.vim"
let perl_extended_vars = 1    "highlight complex expressions such as @{[$x, $y]}"
let perl_sync_dist     = 250  "use more context for highlighting"

set nocompatible "Use Vim defaults"
set backspace=2  "Allow backspacing over everything in insert mode"

set autoindent   "Always set auto-indenting on"
set expandtab    "Insert spaces instead of tabs in insert mode. Use spaces for indents"
set tabstop=4    "Number of spaces that a <Tab> in the file counts for"
set shiftwidth=4 "Number of spaces to use for each step of (auto)indent"

set showmatch    "When a bracket is inserted, briefly jump to the matching one"

syntax

plugins

ftplugins

CPAN modules

  • To be added

Debugging tools

I just found out about VimDebug. I have not yet been able to install it on Windows, but looks promising from the description.

flag
1  
The .vimrc settings should be heavily commented. E.g., what does perl_include_pod do? – Manni Oct 15 at 19:06
Thank you! (Dear Lord, why are we not allowed to say "Thank you!" in a comment?) – Manni Oct 15 at 19:32
@Manni: You are welcome. I have been using the same .vimrc for many years and a recent bunch of vim related questions got me curious. I was too lazy to wade through everything that was posted on PerlMonks (and see what was current etc.), so I figured we could put together something here. – Sinan Ünür Oct 15 at 20:02
I think that that's a great idea. Sorry that my own contribution is that lame. – Manni Oct 16 at 8:22
Good idea. Vote up ! – ldigas Oct 17 at 16:37

7 Answers

vote up 1 vote down

.vimrc:

" Allow :make to run 'perl -c' on the current buffer, jumping to 
" errors as appropriate
" My copy of vimparse: http://irc.peeron.com/~zigdon/misc/vimparse.pl

set makeprg=$HOME/bin/vimparse.pl\ -c\ %\ $*

" point at wherever you keep the output of pltags.pl, allowing use of ^-]
" to jump to function definitions.

set tags+=/path/to/tags
link|flag
What is pltags.pl? Is it better than ctags? – Manni Oct 15 at 19:34
1  
I think search.cpan.org/perldoc/Perl::Tags is based on it. – Sinan Ünür Oct 15 at 19:46
1  
Could you please explain if there are any advantages to using pltags.pl rather than taglist.vim w/ ctags? – Sinan Ünür Oct 15 at 20:00
And vimparse.pl really works for you? Is that really the correct URL? – Manni Oct 16 at 14:24
1  
@sinan it enables quickfix - all it does is reformat the output of perl -c so that vim parses it as compiler errors. The the usual quickfix commands work. – zigdon Oct 16 at 18:51
show 4 more comments
vote up 3 vote down
" Create a command :Tidy to invoke perltidy.
" By default it operates on the whole file, but you can give it a
" range or visual range as well if you know what you're doing.
command -range=% -nargs=* Tidy <line1>,<line2>!
    \perltidy -your -preferred -default -options <args>
link|flag
vote up 1 vote down

Here are a couple of my .vimrc settings. They may not be Perl specific, but I couldn't work without them:

set nocompatible        " Use Vim defaults (much better!) "
set bs=2                " Allow backspacing over everything in insert mode "
set ai                  " Always set auto-indenting on "
set showmatch           " show matching brackets "

" for quick scripts, just open a new buffer and type '_perls' "
iab _perls #!/usr/bin/perl<CR><BS><CR>use strict;<CR>use warnings;<CR>
link|flag
vote up 1 vote down

Look also at perl-support.vim (a Perl IDE for Vim/gVim). Comes with suggestions for customizing Vim (.vimrc), gVim (.gvimrc), ctags, perltidy, and Devel:SmallProf beside many other things.

link|flag
I hate that one. The comments feature alone deserves a thorough 'rm -rf', IMHO. – Manni Oct 19 at 12:32
vote up 3 vote down

From chromatic's blog:

map ,pt <ESC>:%! perltidy<CR>
map ,ptv <ESC>:'<,'>! perltidy<CR>
  • type ,pt: vim will run perltidy on the entire file
  • select a region and type ,ptv: vim will run perltidy on the selection
link|flag
I seem to be missing something here: How can I type ,ptv without vim running perltidy on the entire file? – Manni Oct 21 at 9:21
Ovid's comment (#3) seems offer a much better solution. – Manni Oct 21 at 9:23
Three hours later: turns out that the 'p' in that mapping is a really bad idea. It will bite you when vim's got something to paste. – Manni Oct 21 at 13:22
@Manni: select a region first: with the mouse if using gvim, or with visual mode (v and then use motion commands). – Ether Oct 21 at 15:23
That's not what I meant. If ',pt' runs tidy on the complete file, why would vim wait for me to type 'v' if I am in visual mode? And how long? – Manni Oct 21 at 16:54
show 3 more comments
vote up 1 vote down

Here's an interesting module I found on the weekend: App::EditorTools::Vim. Its most interesting feature seems to be its ability to rename lexical variables. Unfortunately, my tests revealed that it doesn't seem to be ready yet for any production use, but it sure seems worth to keep an eye on.

link|flag
vote up 1 vote down

Perl Best Practices has an appendix on Editor Configurations. vim is the first editor listed.

link|flag

Your Answer

Get an OpenID
or

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