Skip to content

Commit

Permalink
Update runtime files
Browse files Browse the repository at this point in the history
  • Loading branch information
brammool committed Jul 19, 2019
1 parent 7964873 commit 85850f3
Show file tree
Hide file tree
Showing 23 changed files with 1,797 additions and 1,287 deletions.
1,982 changes: 1,213 additions & 769 deletions runtime/autoload/netrw.vim

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions runtime/autoload/netrwSettings.vim
@@ -1,7 +1,7 @@
" netrwSettings.vim: makes netrw settings simpler
" Date: Dec 30, 2014
" Date: Nov 09, 2016
" Maintainer: Charles E Campbell <drchipNOSPAM at campbellfamily dot biz>
" Version: 15
" Version: 16
" Copyright: Copyright (C) 1999-2007 Charles E. Campbell {{{1
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
Expand All @@ -19,7 +19,7 @@
if exists("g:loaded_netrwSettings") || &cp
finish
endif
let g:loaded_netrwSettings = "v15"
let g:loaded_netrwSettings = "v16"
if v:version < 700
echohl WarningMsg
echo "***warning*** this version of netrwSettings needs vim 7.0"
Expand Down Expand Up @@ -154,9 +154,13 @@ fun! netrwSettings#NetrwSettings()
put = 'let g:netrw_list_hide = '.g:netrw_list_hide
put = 'let g:netrw_liststyle = '.g:netrw_liststyle
put = 'let g:netrw_localcopycmd = '.g:netrw_localcopycmd
put = 'let g:netrw_localcopycmdopt = '.g:netrw_localcopycmdopt
put = 'let g:netrw_localmkdir = '.g:netrw_localmkdir
put = 'let g:netrw_localmkdiropt = '.g:netrw_localmkdiropt
put = 'let g:netrw_localmovecmd = '.g:netrw_localmovecmd
put = 'let g:netrw_localmovecmdopt = '.g:netrw_localmovecmdopt
put = 'let g:netrw_localrmdir = '.g:netrw_localrmdir
put = 'let g:netrw_localrmdiropt = '.g:netrw_localrmdiropt
put = 'let g:netrw_maxfilenamelen = '.g:netrw_maxfilenamelen
put = 'let g:netrw_menu = '.g:netrw_menu
put = 'let g:netrw_mousemaps = '.g:netrw_mousemaps
Expand Down
17 changes: 12 additions & 5 deletions runtime/doc/eval.txt
@@ -1,4 +1,4 @@
*eval.txt* For Vim version 8.1. Last change: 2019 Jul 13
*eval.txt* For Vim version 8.1. Last change: 2019 Jul 19


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -8867,7 +8867,7 @@ sign_placelist({list})
Examples: >
" Place sign s1 with id 5 at line 20 and id 10 at line
" 30 in buffer a.c
let [n1, n2] = sign_place([
let [n1, n2] = sign_placelist([
\ {'id' : 5,
\ 'name' : 's1',
\ 'buffer' : 'a.c',
Expand All @@ -8880,7 +8880,7 @@ sign_placelist({list})
" Place sign s1 in buffer a.c at line 40 and 50
" with auto-generated identifiers
let [n1, n2] = sign_place([
let [n1, n2] = sign_placelist([
\ {'name' : 's1',
\ 'buffer' : 'a.c',
\ 'lnum' : 40},
Expand Down Expand Up @@ -8977,8 +8977,10 @@ sign_unplacelist({list}) *sign_unplacelist()*
Example: >
" Remove sign with id 10 from buffer a.vim and sign
" with id 20 from buffer b.vim
call sign_unplace([{'id' : 10, 'buffer' : "a.vim"},
\ {'id' : 20, 'buffer' : 'b.vim'}])
call sign_unplacelist([
\ {'id' : 10, 'buffer' : "a.vim"},
\ {'id' : 20, 'buffer' : 'b.vim'},
\ ])
<
simplify({filename}) *simplify()*
Simplify the file name as much as possible without changing
Expand Down Expand Up @@ -11503,6 +11505,11 @@ text...
register values cannot be used here, since they cannot
be locked.

:cons[t]
:cons[t] {var-name}
If no argument is given or only {var-name} is given,
the behavior is the same as |:let|.

:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
Lock the internal variable {name}. Locking means that
it can no longer be changed (until it is unlocked).
Expand Down
12 changes: 11 additions & 1 deletion runtime/doc/filetype.txt
@@ -1,4 +1,4 @@
*filetype.txt* For Vim version 8.1. Last change: 2019 May 05
*filetype.txt* For Vim version 8.1. Last change: 2019 Jul 16


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -642,6 +642,16 @@ To disable this behavior, set the following variable in your vimrc: >
let g:python_recommended_style = 0
QF QUICKFIX *qf.vim* *ft-qf-plugin*

The "qf" filetype is used for the quickfix window, see |quickfix-window|.

The quickfix filetype plugin includes configuration for displaying the command
that produced the quickfix list in the |status-line|. To disable this setting,
configure as follows: >
:let g:qf_disable_statusline = 1
R MARKDOWN *ft-rmd-plugin*

By default ftplugin/html.vim is not sourced. If you want it sourced, add to
Expand Down
2 changes: 1 addition & 1 deletion runtime/doc/options.txt
@@ -1,4 +1,4 @@
*options.txt* For Vim version 8.1. Last change: 2019 Jul 06
*options.txt* For Vim version 8.1. Last change: 2019 Jul 18


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down

0 comments on commit 85850f3

Please sign in to comment.