Skip to content

Commit 17f48f5

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 5e5f3b9 + 53ec795 commit 17f48f5

40 files changed

+2284
-1767
lines changed

runtime/autoload/netrw.vim

Lines changed: 828 additions & 544 deletions
Large diffs are not rendered by default.

runtime/autoload/netrwSettings.vim

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" netrwSettings.vim: makes netrw settings simpler
2-
" Date: Dec 30, 2014
2+
" Date: Nov 09, 2016
33
" Maintainer: Charles E Campbell <drchipNOSPAM at campbellfamily dot biz>
4-
" Version: 15
4+
" Version: 16
55
" Copyright: Copyright (C) 1999-2007 Charles E. Campbell {{{1
66
" Permission is hereby granted to use and distribute this code,
77
" with or without modifications, provided that this copyright
@@ -19,7 +19,7 @@
1919
if exists("g:loaded_netrwSettings") || &cp
2020
finish
2121
endif
22-
let g:loaded_netrwSettings = "v15"
22+
let g:loaded_netrwSettings = "v16"
2323
if v:version < 700
2424
echohl WarningMsg
2525
echo "***warning*** this version of netrwSettings needs vim 7.0"
@@ -154,9 +154,13 @@ fun! netrwSettings#NetrwSettings()
154154
put = 'let g:netrw_list_hide = '.g:netrw_list_hide
155155
put = 'let g:netrw_liststyle = '.g:netrw_liststyle
156156
put = 'let g:netrw_localcopycmd = '.g:netrw_localcopycmd
157+
put = 'let g:netrw_localcopycmdopt = '.g:netrw_localcopycmdopt
157158
put = 'let g:netrw_localmkdir = '.g:netrw_localmkdir
159+
put = 'let g:netrw_localmkdiropt = '.g:netrw_localmkdiropt
158160
put = 'let g:netrw_localmovecmd = '.g:netrw_localmovecmd
161+
put = 'let g:netrw_localmovecmdopt = '.g:netrw_localmovecmdopt
159162
put = 'let g:netrw_localrmdir = '.g:netrw_localrmdir
163+
put = 'let g:netrw_localrmdiropt = '.g:netrw_localrmdiropt
160164
put = 'let g:netrw_maxfilenamelen = '.g:netrw_maxfilenamelen
161165
put = 'let g:netrw_menu = '.g:netrw_menu
162166
put = 'let g:netrw_mousemaps = '.g:netrw_mousemaps

runtime/doc/autocmd.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*autocmd.txt* For Vim version 8.0. Last change: 2017 Oct 21
1+
*autocmd.txt* For Vim version 8.0. Last change: 2017 Nov 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -68,7 +68,14 @@ Note: The ":autocmd" command can only be followed by another command when the
6868
'|' appears before {cmd}. This works: >
6969
:augroup mine | au! BufRead | augroup END
7070
But this sees "augroup" as part of the defined command: >
71+
:augroup mine | au! BufRead * | augroup END
7172
:augroup mine | au BufRead * set tw=70 | augroup END
73+
Instead you can put the group name into the command: >
74+
:au! mine BufRead *
75+
:au mine BufRead * set tw=70
76+
Or use `:execute`: >
77+
:augroup mine | exe "au! BufRead *" | augroup END
78+
:augroup mine | exe "au BufRead * set tw=70" | augroup END
7279
7380
Note that special characters (e.g., "%", "<cword>") in the ":autocmd"
7481
arguments are not expanded when the autocommand is defined. These will be

runtime/doc/eval.txt

Lines changed: 118 additions & 117 deletions
Large diffs are not rendered by default.

runtime/doc/gui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ window Vim is running in with these commands: >
162162
*gui-IME* *iBus*
163163
Input methods for international characters in X that rely on the XIM
164164
framework, most notably iBus, have been known to produce undesirable results
165-
in gVim. These may include an inability to enter spaces, or long delays
165+
in gvim. These may include an inability to enter spaces, or long delays
166166
between typing a character and it being recognized by the application.
167167

168168
One workaround that has been successful, for unknown reasons, is to prevent

runtime/doc/message.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ starts. It can be fixed in one of these ways:
640640
write the file twice and set the clock back.
641641

642642
If you get W11 all the time, you may need to disable "Acronis Active
643-
Protection" or register vim as a trusted service/application.
643+
Protection" or register Vim as a trusted service/application.
644644

645645
*W12* >
646646
Warning: File "{filename}" has changed and the buffer was changed in Vim as well

runtime/doc/options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4206,7 +4206,7 @@ A jump table for the options with a short description can be found at |Q_op|.
42064206
set.
42074207
|hl-Question| r |hit-enter| prompt and yes/no questions
42084208
|hl-StatusLine| s status line of current window |status-line|
4209-
|hl-StatusLineNC| S status lines of not-current windows
4209+
|hl-StatusLineNC| S status lines of not-current windows
42104210
|hl-Title| t Titles for output from ":set all", ":autocmd" etc.
42114211
|hl-VertSplit| c column used to separate vertically split windows
42124212
|hl-Visual| v Visual mode
@@ -5649,7 +5649,7 @@ A jump table for the options with a short description can be found at |Q_op|.
56495649
Specifies the name of the MzScheme shared library. The default is
56505650
DYNAMIC_MZSCH_DLL which was specified at compile time.
56515651
Environment variables are expanded |:set_env|.
5652-
The value must be set in the |vimrc| script or ealier. In the
5652+
The value must be set in the |vimrc| script or earlier. In the
56535653
startup, before the |load-plugins| step.
56545654
This option cannot be set from a |modeline| or in the |sandbox|, for
56555655
security reasons.

0 commit comments

Comments
 (0)