Here are some of my tricks (taken from my vimrc). Please note that some of it will work with vim (that is the incompatible vi mode):
" for Perl programming, have things in braces indenting themselves: autocmd FileType perl set smartindent autocmd FileType perl set isk+=_,$,@,%,#,- " none of these should be word dividers, so make them not as part of a word autocmd FileType perl setlocal include=\\<\\(use\\\|require\\)\\> " Not a perl related but do help even in perl :) au BufRead *.* :source $VIMRUNTIME/ftplugin/man.vim "Read pdf file inside vim autocmd BufReadPost *.pdf %!pdftotext -nopgbrk "%" - |fmt -csw78 set ignorecase " don't care about the case of the search ... set smartcase " ignore ignorecase when pattern contains uppercase Enjoy, Ido On Jan 25, 2008 10:02 AM, Gabor Szabo <[EMAIL PROTECTED]> wrote: > Hi, > > I just saw the trick posted by Ovid http://use.perl.org/~Ovid/journal/35469 > on how to integrate vi and perldoc. > > I would really like to see more such trick. So those of you who use vi, please > throw a bone to the rest of us so we can improve our vi-foo. > > Gabor > > > -- > Gabor Szabo > http://www.szabgab.com/ > Perl Training in Israel http://www.pti.co.il/ > Profile: http://www.linkedin.com/in/szabgab > _______________________________________________ > Perl mailing list > [email protected] > http://perl.org.il/mailman/listinfo/perl > -- http://ik.homelinux.org/ _______________________________________________ Perl mailing list [email protected] http://perl.org.il/mailman/listinfo/perl
