mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
parent
6995fad260
commit
df4440024b
@ -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.
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
" 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>
|
||||||
|
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||||
" Latest Revision: 2018-12-05
|
" Latest Revision: 2018-12-05
|
||||||
|
|
||||||
if exists("b:did_indent")
|
if exists("b:did_indent")
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user