diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/change.txt | 4 | ||||
-rw-r--r-- | runtime/doc/tags | 1 | ||||
-rw-r--r-- | runtime/ftplugin/perl.vim | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index 29a2c9f3e..676da4bf1 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.0aa. Last change: 2005 Dec 10 +*change.txt* For Vim version 7.0aa. Last change: 2005 Dec 16 VIM REFERENCE MANUAL by Bram Moolenaar @@ -503,6 +503,8 @@ comment (starting with '"') after the ":!" command. temporary file and then reads the file into the buffer. Vim uses the 'shellredir' option to redirect the filter output to the temporary file. + However, if the 'shelltemp' option is off then pipes + are used when possible (on Unix). When the 'R' flag is included in 'cpoptions' marks in the filtered lines are deleted, unless the |:keepmarks| command is used. Example: > diff --git a/runtime/doc/tags b/runtime/doc/tags index c2ec052d6..300e3b4d2 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -5335,7 +5335,6 @@ hebrew hebrew.txt /*hebrew* hebrew.txt hebrew.txt /*hebrew.txt* help various.txt /*help* help-context help.txt /*help-context* -help-tags tags 1 help-translated various.txt /*help-translated* help-xterm-window various.txt /*help-xterm-window* help.txt help.txt /*help.txt* diff --git a/runtime/ftplugin/perl.vim b/runtime/ftplugin/perl.vim index e8c801fc3..b3078005f 100644 --- a/runtime/ftplugin/perl.vim +++ b/runtime/ftplugin/perl.vim @@ -1,7 +1,7 @@ " Vim filetype plugin file " Language: Perl " Maintainer: Dan Sharp <dwsharp at hotmail dot com> -" Last Change: 2004 Dec 06 +" Last Change: 2005 Dec 16 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin if exists("b:did_ftplugin") | finish | endif @@ -27,7 +27,7 @@ endif " Provided by Ned Konz <ned at bike-nomad dot com> "--------------------------------------------- -setlocal include=\\<\\(use\\|require\\)\\> +setlocal include=\\<\\(use\\\|require\\)\\> setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','') setlocal define=[^A-Za-z_] |