vim-patch:30e9b3c42567 (#13936)

Update runtime files
30e9b3c425
This commit is contained in:
Volodymyr Kot 2021-03-03 23:19:01 +00:00 committed by GitHub
parent 6995fad260
commit df4440024b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 9 deletions

View File

@ -90,7 +90,7 @@ g CTRL-G Prints the current position of the cursor in five
:buffers :buffers
:files :files
:ls List all the currently known file names. See :ls List all the currently known file names. See
'windows.txt' |:files| |:buffers| |:ls|. |windows.txt| |:files| |:buffers| |:ls|.
Vim will remember the full path name of a file name that you enter. In most Vim will remember the full path name of a file name that you enter. In most
cases when the file name is displayed only the name you typed is shown, but cases when the file name is displayed only the name you typed is shown, but
@ -1190,7 +1190,7 @@ The syntax is best shown via some examples: >
< Open the browser in the C:/bar directory, with the current < Open the browser in the C:/bar directory, with the current
buffer filename as default, and save the buffer under the buffer filename as default, and save the buffer under the
filename chosen. filename chosen.
Also see the |'browsedir'| option. Also see the 'browsedir' option.
For versions of Vim where browsing is not supported, the command is executed For versions of Vim where browsing is not supported, the command is executed
unmodified. unmodified.

View File

@ -106,8 +106,6 @@ argument.
This can be used to find out where time is spent while loading This can be used to find out where time is spent while loading
your |config|, plugins and opening the first file. your |config|, plugins and opening the first file.
When {fname} already exists new messages are appended. When {fname} already exists new messages are appended.
(Only available when compiled with the |+startuptime|
feature).
*-+* *-+*
+[num] The cursor will be positioned on line "num" for the first +[num] The cursor will be positioned on line "num" for the first

View File

@ -1715,7 +1715,7 @@ There are several html preprocessor languages out there. html.vim has been
written such that it should be trivial to include it. To do so add the written such that it should be trivial to include it. To do so add the
following two lines to the syntax coloring file for that language following two lines to the syntax coloring file for that language
(the example comes from the asp.vim file): (the example comes from the asp.vim file):
>
runtime! syntax/html.vim runtime! syntax/html.vim
syn cluster htmlPreproc add=asp syn cluster htmlPreproc add=asp

View File

@ -1,8 +1,8 @@
" Vim indent file " Vim indent file
" Language: Tcl " Language: Tcl
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Update: Chris Heithoff <chrisheithoff@gmail.com> " Latest Update: Chris Heithoff <chrisheithoff@gmail.com>
" Latest Revision: 2018-12-05 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 2018-12-05
if exists("b:did_indent") if exists("b:did_indent")
finish finish

View File

@ -356,8 +356,8 @@ func! s:SetupColorSchemes() abort
let s:did_setup_color_schemes = 1 let s:did_setup_color_schemes = 1
let n = globpath(&runtimepath, "colors/*.vim", 1, 1) let n = globpath(&runtimepath, "colors/*.vim", 1, 1)
let n += globpath(&runtimepath, "pack/*/start/*/colors/*.vim", 1, 1) let n += globpath(&packpath, "pack/*/start/*/colors/*.vim", 1, 1)
let n += globpath(&runtimepath, "pack/*/opt/*/colors/*.vim", 1, 1) let n += globpath(&packpath, "pack/*/opt/*/colors/*.vim", 1, 1)
" Ignore case for VMS and windows, sort on name " Ignore case for VMS and windows, sort on name
let names = sort(map(n, 'substitute(v:val, "\\c.*[/\\\\:\\]]\\([^/\\\\:]*\\)\\.vim", "\\1", "")'), 1) let names = sort(map(n, 'substitute(v:val, "\\c.*[/\\\\:\\]]\\([^/\\\\:]*\\)\\.vim", "\\1", "")'), 1)