Skip to content

Commit 2463525

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 4b93716 + 61343f0 commit 2463525

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2521
-1810
lines changed

runtime/autoload/netrw.vim

Lines changed: 1213 additions & 769 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/eval.txt

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.1. Last change: 2019 Jul 13
1+
*eval.txt* For Vim version 8.1. Last change: 2019 Jul 19
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -8867,7 +8867,7 @@ sign_placelist({list})
88678867
Examples: >
88688868
" Place sign s1 with id 5 at line 20 and id 10 at line
88698869
" 30 in buffer a.c
8870-
let [n1, n2] = sign_place([
8870+
let [n1, n2] = sign_placelist([
88718871
\ {'id' : 5,
88728872
\ 'name' : 's1',
88738873
\ 'buffer' : 'a.c',
@@ -8880,7 +8880,7 @@ sign_placelist({list})
88808880
88818881
" Place sign s1 in buffer a.c at line 40 and 50
88828882
" with auto-generated identifiers
8883-
let [n1, n2] = sign_place([
8883+
let [n1, n2] = sign_placelist([
88848884
\ {'name' : 's1',
88858885
\ 'buffer' : 'a.c',
88868886
\ 'lnum' : 40},
@@ -8977,8 +8977,10 @@ sign_unplacelist({list}) *sign_unplacelist()*
89778977
Example: >
89788978
" Remove sign with id 10 from buffer a.vim and sign
89798979
" with id 20 from buffer b.vim
8980-
call sign_unplace([{'id' : 10, 'buffer' : "a.vim"},
8981-
\ {'id' : 20, 'buffer' : 'b.vim'}])
8980+
call sign_unplacelist([
8981+
\ {'id' : 10, 'buffer' : "a.vim"},
8982+
\ {'id' : 20, 'buffer' : 'b.vim'},
8983+
\ ])
89828984
<
89838985
simplify({filename}) *simplify()*
89848986
Simplify the file name as much as possible without changing
@@ -11508,6 +11510,11 @@ text...
1150811510
register values cannot be used here, since they cannot
1150911511
be locked.
1151011512

11513+
:cons[t]
11514+
:cons[t] {var-name}
11515+
If no argument is given or only {var-name} is given,
11516+
the behavior is the same as |:let|.
11517+
1151111518
:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
1151211519
Lock the internal variable {name}. Locking means that
1151311520
it can no longer be changed (until it is unlocked).

runtime/doc/filetype.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 8.1. Last change: 2019 May 05
1+
*filetype.txt* For Vim version 8.1. Last change: 2019 Jul 16
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -642,6 +642,16 @@ To disable this behavior, set the following variable in your vimrc: >
642642
let g:python_recommended_style = 0
643643
644644
645+
QF QUICKFIX *qf.vim* *ft-qf-plugin*
646+
647+
The "qf" filetype is used for the quickfix window, see |quickfix-window|.
648+
649+
The quickfix filetype plugin includes configuration for displaying the command
650+
that produced the quickfix list in the |status-line|. To disable this setting,
651+
configure as follows: >
652+
:let g:qf_disable_statusline = 1
653+
654+
645655
R MARKDOWN *ft-rmd-plugin*
646656

647657
By default ftplugin/html.vim is not sourced. If you want it sourced, add to

runtime/doc/options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 8.1. Last change: 2019 Jul 06
1+
*options.txt* For Vim version 8.1. Last change: 2019 Jul 18
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

0 commit comments

Comments
 (0)