aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/zip.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-28 23:27:35 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-28 23:39:24 +0200
commit40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7 (patch)
tree376dbc0cea422b0b963c3823538cdfa70735ddc1 /runtime/autoload/zip.vim
parenta5e9974ed77621c224b2b8fa49f76cab954fb2c6 (diff)
downloadrneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.tar.gz
rneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.tar.bz2
rneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.zip
vim-patch:3e496b0ea319
Updated runtime files. https://github.com/vim/vim/commit/3e496b0ea31996b665824f45664dee1fdd73c4d0 NA patches: vim-patch:8.0.0015 vim-patch:8.0.0016 vim-patch:177778575148
Diffstat (limited to 'runtime/autoload/zip.vim')
-rw-r--r--runtime/autoload/zip.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/autoload/zip.vim b/runtime/autoload/zip.vim
index 824af01fe8..ea086e0882 100644
--- a/runtime/autoload/zip.vim
+++ b/runtime/autoload/zip.vim
@@ -65,14 +65,14 @@ endif
" zip#Browse: {{{2
fun! zip#Browse(zipfile)
" call Dfunc("zip#Browse(zipfile<".a:zipfile.">)")
- " sanity check: insure that the zipfile has "PK" as its first two letters
+ " sanity check: ensure that the zipfile has "PK" as its first two letters
" (zipped files have a leading PK as a "magic cookie")
if !filereadable(a:zipfile) || readfile(a:zipfile, "", 1)[0] !~ '^PK'
exe "noautocmd e ".fnameescape(a:zipfile)
" call Dret("zip#Browse : not a zipfile<".a:zipfile.">")
return
" else " Decho
-" call Decho("zip#Browse: a:zipfile<".a:zipfile."> passed PK test - its a zip file")
+" call Decho("zip#Browse: a:zipfile<".a:zipfile."> passed PK test - it's a zip file")
endif
let repkeep= &report
@@ -95,7 +95,7 @@ fun! zip#Browse(zipfile)
endif
if !filereadable(a:zipfile)
if a:zipfile !~# '^\a\+://'
- " if its an url, don't complain, let url-handlers such as vim do its thing
+ " if it's an url, don't complain, let url-handlers such as vim do its thing
redraw!
echohl Error | echo "***error*** (zip#Browse) File not readable<".a:zipfile.">" | echohl None
" call inputsave()|call input("Press <cr> to continue")|call inputrestore()