comparison runtime/ftplugin/perl.vim @ 36:125e80798a85 v7.0021

updated for version 7.0021
author vimboss
date Thu, 09 Dec 2004 21:34:53 +0000
parents 3fc0f57ecb91
children e4c00ec07598
comparison
equal deleted inserted replaced
35:8f3a526c2fe1 36:125e80798a85
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: Perl 2 " Language: Perl
3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com> 3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
4 " Last Change: 2004 May 16 4 " Last Change: 2004 Dec 06
5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin 5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin
6 6
7 if exists("b:did_ftplugin") | finish | endif 7 if exists("b:did_ftplugin") | finish | endif
8 let b:did_ftplugin = 1 8 let b:did_ftplugin = 1
9 9
25 \ "All Files (*.*)\t*.*\n" 25 \ "All Files (*.*)\t*.*\n"
26 endif 26 endif
27 27
28 " Provided by Ned Konz <ned at bike-nomad dot com> 28 " Provided by Ned Konz <ned at bike-nomad dot com>
29 "--------------------------------------------- 29 "---------------------------------------------
30 setlocal include=\\<\\(use\|require\\)\\> 30 setlocal include=\\<\\(use\\|require\\)\\>
31 setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','') 31 setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','')
32 setlocal define=[^A-Za-z_] 32 setlocal define=[^A-Za-z_]
33 33
34 " The following line changes a global variable but is necessary to make 34 " The following line changes a global variable but is necessary to make
35 " gf and similar commands work. The change to iskeyword was incorrect. 35 " gf and similar commands work. The change to iskeyword was incorrect.