mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
vim-patch:eab6dff19f38
Update runtime files
eab6dff19f
Omit de.po translations.
This commit is contained in:
parent
95f02cb587
commit
a299f54cd7
@ -443,6 +443,10 @@ emulate it. For example, this mimics autolist=ambiguous:
|
|||||||
This will find the longest match with the first 'wildchar', then list all
|
This will find the longest match with the first 'wildchar', then list all
|
||||||
matching files with the next.
|
matching files with the next.
|
||||||
|
|
||||||
|
*complete-script-local-functions*
|
||||||
|
When completing user function names, prepend "s:" to find script-local
|
||||||
|
functions.
|
||||||
|
|
||||||
*suffixes*
|
*suffixes*
|
||||||
For file name completion you can use the 'suffixes' option to set a priority
|
For file name completion you can use the 'suffixes' option to set a priority
|
||||||
between files with almost the same name. If there are multiple matches,
|
between files with almost the same name. If there are multiple matches,
|
||||||
|
@ -368,4 +368,15 @@ highlighting. So do these:
|
|||||||
|
|
||||||
You can find the details in $VIMRUNTIME/syntax/help.vim
|
You can find the details in $VIMRUNTIME/syntax/help.vim
|
||||||
|
|
||||||
|
*inclusion*
|
||||||
|
Some people make a big deal about using "his" when referring to the user,
|
||||||
|
thinking it means we assume the user is male. That is of course not the case,
|
||||||
|
it's just a habit of writing help text, which quite often is many years old.
|
||||||
|
Also, a lot of the text is written by contributors for who English is not
|
||||||
|
their first language. We do not make any assumptions about the gender of the
|
||||||
|
user, no matter how the text is phrased. And we do not want to waste time on
|
||||||
|
this discussion. The goal is that the reader understands how Vim works, the
|
||||||
|
exact wording is secondary.
|
||||||
|
|
||||||
|
|
||||||
vim:tw=78:ts=8:noet:ft=help:norl:
|
vim:tw=78:ts=8:noet:ft=help:norl:
|
||||||
|
@ -194,7 +194,7 @@ The name for a highlight or syntax group must consist of ASCII letters, digits
|
|||||||
and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give
|
and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give
|
||||||
an error when using other characters.
|
an error when using other characters.
|
||||||
|
|
||||||
To be able to allow each user to pick his favorite set of colors, there must
|
To be able to allow each user to pick their favorite set of colors, there must
|
||||||
be preferred names for highlight groups that are common for many languages.
|
be preferred names for highlight groups that are common for many languages.
|
||||||
These are the suggested group names (if syntax highlighting works properly
|
These are the suggested group names (if syntax highlighting works properly
|
||||||
you can see the actual color, except for "Ignore"):
|
you can see the actual color, except for "Ignore"):
|
||||||
@ -4486,8 +4486,8 @@ two different ways:
|
|||||||
(e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
|
(e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
|
||||||
All matching files are loaded. Using a relative path is
|
All matching files are loaded. Using a relative path is
|
||||||
recommended, because it allows a user to replace the included file
|
recommended, because it allows a user to replace the included file
|
||||||
with his own version, without replacing the file that does the ":syn
|
with their own version, without replacing the file that does the
|
||||||
include".
|
":syn include".
|
||||||
|
|
||||||
*E847*
|
*E847*
|
||||||
The maximum number of includes is 999.
|
The maximum number of includes is 999.
|
||||||
|
@ -347,7 +347,8 @@ to find the first #include after the cursor: >
|
|||||||
|
|
||||||
And then type "n" several times. You will move to each #include in the text.
|
And then type "n" several times. You will move to each #include in the text.
|
||||||
You can also use a count if you know which match you want. Thus "3n" finds
|
You can also use a count if you know which match you want. Thus "3n" finds
|
||||||
the third match. Using a count with "/" doesn't work.
|
the third match. You can also use a count with "/": "4/the" goes to the
|
||||||
|
fourth match of "the".
|
||||||
|
|
||||||
The "?" command works like "/" but searches backwards: >
|
The "?" command works like "/" but searches backwards: >
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
" matchit.vim: (global plugin) Extended "%" matching
|
" matchit.vim: (global plugin) Extended "%" matching
|
||||||
" autload script of matchit plugin, see ../plugin/matchit.vim
|
" autload script of matchit plugin, see ../plugin/matchit.vim
|
||||||
" Last Change: 2019 Oct 24
|
" Last Change: Mar 01, 2020
|
||||||
|
|
||||||
let s:last_mps = ""
|
let s:last_mps = ""
|
||||||
let s:last_words = ":"
|
let s:last_words = ":"
|
||||||
@ -48,6 +48,8 @@ function matchit#Match_wrapper(word, forward, mode) range
|
|||||||
execute "normal! gv\<Esc>"
|
execute "normal! gv\<Esc>"
|
||||||
elseif a:mode == "o" && mode(1) !~# '[vV]'
|
elseif a:mode == "o" && mode(1) !~# '[vV]'
|
||||||
exe "norm! v"
|
exe "norm! v"
|
||||||
|
elseif a:mode == "n" && mode(1) =~# 'ni'
|
||||||
|
exe "norm! v"
|
||||||
endif
|
endif
|
||||||
" In s:CleanUp(), we may need to check whether the cursor moved forward.
|
" In s:CleanUp(), we may need to check whether the cursor moved forward.
|
||||||
let startpos = [line("."), col(".")]
|
let startpos = [line("."), col(".")]
|
||||||
|
@ -4,7 +4,7 @@ For instructions on installing this file, type
|
|||||||
`:help matchit-install`
|
`:help matchit-install`
|
||||||
inside Vim.
|
inside Vim.
|
||||||
|
|
||||||
For Vim version 8.1. Last change: 2019 Oct 24
|
For Vim version 8.1. Last change: 2020 Mar 01
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Benji Fisher et al
|
VIM REFERENCE MANUAL by Benji Fisher et al
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
" matchit.vim: (global plugin) Extended "%" matching
|
" matchit.vim: (global plugin) Extended "%" matching
|
||||||
" Maintainer: Christian Brabandt
|
" Maintainer: Christian Brabandt
|
||||||
" Version: 1.16
|
" Version: 1.17
|
||||||
" Last Change: 2019 Oct 24
|
" Last Change: 2019 Oct 24
|
||||||
" Repository: https://github.com/chrisbra/matchit
|
" Repository: https://github.com/chrisbra/matchit
|
||||||
" Previous URL:http://www.vim.org/script.php?script_id=39
|
" Previous URL:http://www.vim.org/script.php?script_id=39
|
||||||
|
Loading…
Reference in New Issue
Block a user