comparison runtime/autoload/netrwSettings.vim @ 17433:ca8e754bdd53

Update runtime files commit https://github.com/vim/vim/commit/85850f3a5ef9f5a9d22e908ef263de8faa265a95 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 19 22:05:51 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Jul 2019 22:15:08 +0200
parents 92a0a33f8296
children 1a951a4beee3
comparison
equal deleted inserted replaced
17432:d13620591637 17433:ca8e754bdd53
1 " netrwSettings.vim: makes netrw settings simpler 1 " netrwSettings.vim: makes netrw settings simpler
2 " Date: Dec 30, 2014 2 " Date: Nov 09, 2016
3 " Maintainer: Charles E Campbell <drchipNOSPAM at campbellfamily dot biz> 3 " Maintainer: Charles E Campbell <drchipNOSPAM at campbellfamily dot biz>
4 " Version: 15 4 " Version: 16
5 " Copyright: Copyright (C) 1999-2007 Charles E. Campbell {{{1 5 " Copyright: Copyright (C) 1999-2007 Charles E. Campbell {{{1
6 " Permission is hereby granted to use and distribute this code, 6 " Permission is hereby granted to use and distribute this code,
7 " with or without modifications, provided that this copyright 7 " with or without modifications, provided that this copyright
8 " notice is copied with it. Like anything else that's free, 8 " notice is copied with it. Like anything else that's free,
9 " netrwSettings.vim is provided *as is* and comes with no 9 " netrwSettings.vim is provided *as is* and comes with no
17 " every disease and every sickness among the people. 17 " every disease and every sickness among the people.
18 " Load Once: {{{1 18 " Load Once: {{{1
19 if exists("g:loaded_netrwSettings") || &cp 19 if exists("g:loaded_netrwSettings") || &cp
20 finish 20 finish
21 endif 21 endif
22 let g:loaded_netrwSettings = "v15" 22 let g:loaded_netrwSettings = "v16"
23 if v:version < 700 23 if v:version < 700
24 echohl WarningMsg 24 echohl WarningMsg
25 echo "***warning*** this version of netrwSettings needs vim 7.0" 25 echo "***warning*** this version of netrwSettings needs vim 7.0"
26 echohl Normal 26 echohl Normal
27 finish 27 finish
152 put = 'let g:netrw_keepdir = '.g:netrw_keepdir 152 put = 'let g:netrw_keepdir = '.g:netrw_keepdir
153 put = 'let g:netrw_list_cmd = '.g:netrw_list_cmd 153 put = 'let g:netrw_list_cmd = '.g:netrw_list_cmd
154 put = 'let g:netrw_list_hide = '.g:netrw_list_hide 154 put = 'let g:netrw_list_hide = '.g:netrw_list_hide
155 put = 'let g:netrw_liststyle = '.g:netrw_liststyle 155 put = 'let g:netrw_liststyle = '.g:netrw_liststyle
156 put = 'let g:netrw_localcopycmd = '.g:netrw_localcopycmd 156 put = 'let g:netrw_localcopycmd = '.g:netrw_localcopycmd
157 put = 'let g:netrw_localcopycmdopt = '.g:netrw_localcopycmdopt
157 put = 'let g:netrw_localmkdir = '.g:netrw_localmkdir 158 put = 'let g:netrw_localmkdir = '.g:netrw_localmkdir
159 put = 'let g:netrw_localmkdiropt = '.g:netrw_localmkdiropt
158 put = 'let g:netrw_localmovecmd = '.g:netrw_localmovecmd 160 put = 'let g:netrw_localmovecmd = '.g:netrw_localmovecmd
161 put = 'let g:netrw_localmovecmdopt = '.g:netrw_localmovecmdopt
159 put = 'let g:netrw_localrmdir = '.g:netrw_localrmdir 162 put = 'let g:netrw_localrmdir = '.g:netrw_localrmdir
163 put = 'let g:netrw_localrmdiropt = '.g:netrw_localrmdiropt
160 put = 'let g:netrw_maxfilenamelen = '.g:netrw_maxfilenamelen 164 put = 'let g:netrw_maxfilenamelen = '.g:netrw_maxfilenamelen
161 put = 'let g:netrw_menu = '.g:netrw_menu 165 put = 'let g:netrw_menu = '.g:netrw_menu
162 put = 'let g:netrw_mousemaps = '.g:netrw_mousemaps 166 put = 'let g:netrw_mousemaps = '.g:netrw_mousemaps
163 put = 'let g:netrw_mkdir_cmd = '.g:netrw_mkdir_cmd 167 put = 'let g:netrw_mkdir_cmd = '.g:netrw_mkdir_cmd
164 if exists("g:netrw_nobeval") 168 if exists("g:netrw_nobeval")