From 2217cae0c0eb20c33f4b02c105278a5127b7c7eb Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 25 Mar 2006 21:55:52 +0000 Subject: updated for version 7.0b01 --- runtime/autoload/zip.vim | 4 ++-- runtime/doc/options.txt | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'runtime') diff --git a/runtime/autoload/zip.vim b/runtime/autoload/zip.vim index 45aa3532a0..99bdd7960e 100644 --- a/runtime/autoload/zip.vim +++ b/runtime/autoload/zip.vim @@ -76,7 +76,7 @@ fun! zip#Browse(zipfile) $ " call Decho("exe silent r! unzip -l '".escape(a:zipfile,s:zipfile_escape)."'") - exe "silent r! unzip -l '".escape(a:zipfile,s:zipfile_escape)."'" + exe "silent r! unzip -l ".escape(a:zipfile,s:zipfile_escape) $d silent 4,$v/^\s\+\d\+\s\{0,5}\d/d silent 4,$s/^\%(.*\)\s\+\(\S\)/\1/ @@ -141,7 +141,7 @@ fun! zip#Read(fname,mode) " call Decho("zipfile<".zipfile."> fname<".fname.">") " call Decho("exe r! unzip -p '".escape(zipfile,s:zipfile_escape)."' ".fname) - exe "r! unzip -p '".escape(zipfile,s:zipfile_escape)."' ".fname + exe "r! unzip -p ".escape(zipfile,s:zipfile_escape)." ".fname " cleanup 0d diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 801311a038..1bb6ff1d53 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 7.0b. Last change: 2006 Mar 18 +*options.txt* For Vim version 7.0b. Last change: 2006 Mar 25 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1222,6 +1222,8 @@ A jump table for the options with a short description can be found at |Q_op|. 'casemap' 'cmp' string (default: "internal,keepascii") global {not in Vi} + {only available when compiled with the |+multi_byte| + feature} Specifies details about changing the case of letters. It may contain these words, separated by a comma: internal Use internal case mapping functions, the current -- cgit v1.2.3