comparison runtime/autoload/netrw.vim @ 844:d3bbb5dd3913 v7.0f02

updated for version 7.0f02
author vimboss
date Thu, 27 Apr 2006 00:02:13 +0000
parents a209672376fd
children eac1cd7f1eff
comparison
equal deleted inserted replaced
843:9f279ebda751 844:d3bbb5dd3913
1 " netrw.vim: Handles file transfer and remote directory listing across a network 1 " netrw.vim: Handles file transfer and remote directory listing across a network
2 " AUTOLOAD PORTION 2 " AUTOLOAD PORTION
3 " Date: Apr 24, 2006 3 " Date: Apr 26, 2006
4 " Version: 93 4 " Version: 94
5 " Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz> 5 " Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz>
6 " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim 6 " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim
7 " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1 7 " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1
8 " Permission is hereby granted to use and distribute this code, 8 " Permission is hereby granted to use and distribute this code,
9 " with or without modifications, provided that this copyright 9 " with or without modifications, provided that this copyright
21 21
22 " Exception for &cp: {{{1 22 " Exception for &cp: {{{1
23 if &cp || exists("g:loaded_netrw") 23 if &cp || exists("g:loaded_netrw")
24 finish 24 finish
25 endif 25 endif
26 let g:loaded_netrw = "v93" 26 let g:loaded_netrw = "v94"
27 if v:version < 700 27 if v:version < 700
28 echohl WarningMsg | echo "***netrw*** you need vim version 7.0 or later for version ".g:loaded_netrw." of netrw" | echohl None 28 echohl WarningMsg | echo "***netrw*** you need vim version 7.0 or later for version ".g:loaded_netrw." of netrw" | echohl None
29 finish 29 finish
30 endif 30 endif
31 let s:keepcpo= &cpo 31 let s:keepcpo= &cpo
140 if !exists("g:netrw_list_cmd") 140 if !exists("g:netrw_list_cmd")
141 if executable(g:netrw_ssh_cmd) 141 if executable(g:netrw_ssh_cmd)
142 " provide a default listing command 142 " provide a default listing command
143 let g:netrw_list_cmd= g:netrw_ssh_cmd." HOSTNAME ls -FLa" 143 let g:netrw_list_cmd= g:netrw_ssh_cmd." HOSTNAME ls -FLa"
144 else 144 else
145 " call Decho(g:netrw_ssh_cmd." is not executable, can't do remote directory exploring) 145 " call Decho(g:netrw_ssh_cmd." is not executable, can't do remote directory exploring")
146 let g:netrw_list_cmd= "" 146 let g:netrw_list_cmd= ""
147 endif 147 endif
148 endif 148 endif
149 if !exists("g:netrw_list_hide") 149 if !exists("g:netrw_list_hide")
150 let g:netrw_list_hide= "" 150 let g:netrw_list_hide= ""