vim-patch:d2f3a8b87873

Update runtime files.
d2f3a8b878
This commit is contained in:
Justin M. Keyes
2018-10-29 09:29:42 +01:00
parent 9da951ad47
commit 93a85bdd8a
31 changed files with 238 additions and 209 deletions

View File

@@ -666,7 +666,10 @@ FileChangedRO Before making the first change to a read-only
ExitPre When using `:quit`, `:wq` in a way it makes ExitPre When using `:quit`, `:wq` in a way it makes
Vim exit, or using `:qall`, just after Vim exit, or using `:qall`, just after
|QuitPre|. Can be used to close any |QuitPre|. Can be used to close any
non-essential window. non-essential window. Exiting may still be
cancelled if there is a modified buffer that
isn't automatically saved, use |VimLeavePre|
for really exiting.
*FileChangedShell* *FileChangedShell*
FileChangedShell When Vim notices that the modification time of FileChangedShell When Vim notices that the modification time of
a file has changed since editing started. a file has changed since editing started.
@@ -1377,7 +1380,7 @@ Careful: '[ and '] change when using commands that change the buffer.
In commands which expect a file name, you can use "<afile>" for the file name In commands which expect a file name, you can use "<afile>" for the file name
that is being read |:<afile>| (you can also use "%" for the current file that is being read |:<afile>| (you can also use "%" for the current file
name). "<abuf>" can be used for the buffer number of the currently effective name). "<abuf>" can be used for the buffer number of the currently effective
buffer. This also works for buffers that doesn't have a name. But it doesn't buffer. This also works for buffers that don't have a name. But it doesn't
work for files without a buffer (e.g., with ":r file"). work for files without a buffer (e.g., with ":r file").
*gzip-example* *gzip-example*

View File

@@ -844,7 +844,8 @@ These modifiers can be given, in this order:
directory. directory.
:. Reduce file name to be relative to current directory, if :. Reduce file name to be relative to current directory, if
possible. File name is unmodified if it is not below the possible. File name is unmodified if it is not below the
current directory. current directory, but on MS-Windows the drive is removed if
it is the current drive.
For maximum shortness, use ":~:.". For maximum shortness, use ":~:.".
:h Head of the file name (the last component and any separators :h Head of the file name (the last component and any separators
removed). Cannot be used with :e, :r or :t. removed). Cannot be used with :e, :r or :t.

View File

@@ -249,7 +249,7 @@ g:decada.Make_Command string
External command used for |g:decada.Make()| (|'makeprg'|). External command used for |g:decada.Make()| (|'makeprg'|).
*g:decada.Error_Format* *g:decada.Error_Format*
g:decada.Error_Format| string g:decada.Error_Format string
Error format (|'errorformat'|). Error format (|'errorformat'|).
============================================================================== ==============================================================================

View File

@@ -1,4 +1,6 @@
*ft_rust.txt* Filetype plugin for Rust *ft_rust.txt* For Vim version 8.1. Last change: 2017 Nov 02
This is documentation for the Rust filetype plugin.
============================================================================== ==============================================================================
CONTENTS *rust* CONTENTS *rust*

View File

@@ -411,11 +411,11 @@ An example for using CTRL-G U: >
This makes it possible to use the cursor keys in Insert mode, without breaking This makes it possible to use the cursor keys in Insert mode, without breaking
the undo sequence and therefore using |.| (redo) will work as expected. the undo sequence and therefore using |.| (redo) will work as expected.
Also entering a text like (with the "(" mapping from above): > Also entering a text like (with the "(" mapping from above):
Lorem ipsum (dolor Lorem ipsum (dolor
will be repeatable by the |.|to the expected will be repeatable by using |.| to the expected
Lorem ipsum (dolor) Lorem ipsum (dolor)

View File

@@ -1947,7 +1947,7 @@ set "lite_minlines" to the value you desire. Example: >
LPC *lpc.vim* *ft-lpc-syntax* LPC *lpc.vim* *ft-lpc-syntax*
LPC stands for a simple, memory-efficient language: Lars Pensj| C. The LPC stands for a simple, memory-efficient language: Lars Pensjö C. The
file name of LPC is usually *.c. Recognizing these files as LPC would bother file name of LPC is usually *.c. Recognizing these files as LPC would bother
users writing only C programs. If you want to use LPC syntax in Vim, you users writing only C programs. If you want to use LPC syntax in Vim, you
should set a variable in your vimrc file: > should set a variable in your vimrc file: >

View File

@@ -3,7 +3,7 @@
" Maintainer: Debian Vim Maintainers " Maintainer: Debian Vim Maintainers
" Former Maintainers: Gerfried Fuchs <alfie@ist.org> " Former Maintainers: Gerfried Fuchs <alfie@ist.org>
" Wichert Akkerman <wakkerma@debian.org> " Wichert Akkerman <wakkerma@debian.org>
" Last Change: 2018 Jan 28 " Last Change: 2018 May 31
" URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debcontrol.vim " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debcontrol.vim
" Standard syntax initialization " Standard syntax initialization
@@ -40,8 +40,8 @@ let s:pairs = [
" Define some common expressions we can use later on " Define some common expressions we can use later on
syn keyword debcontrolArchitecture contained all any syn keyword debcontrolArchitecture contained all any
exe 'syn keyword debcontrolArchitecture contained '. join(map(s:kernels, {k,v -> v .'-any'})) exe 'syn keyword debcontrolArchitecture contained '. join(map(copy(s:kernels), {k,v -> v .'-any'}))
exe 'syn keyword debcontrolArchitecture contained '. join(map(s:archs, {k,v -> 'any-'.v})) exe 'syn keyword debcontrolArchitecture contained '. join(map(copy(s:archs), {k,v -> 'any-'.v}))
exe 'syn keyword debcontrolArchitecture contained '. join(s:archs) exe 'syn keyword debcontrolArchitecture contained '. join(s:archs)
exe 'syn keyword debcontrolArchitecture contained '. join(s:pairs) exe 'syn keyword debcontrolArchitecture contained '. join(s:pairs)

View File

@@ -3,8 +3,8 @@
" Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net> " Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net>
" Previous Maintainer: Claudio Fleiner <claudio@fleiner.com> " Previous Maintainer: Claudio Fleiner <claudio@fleiner.com>
" Repository: https://notabug.org/jorgesumle/vim-html-syntax " Repository: https://notabug.org/jorgesumle/vim-html-syntax
" Last Change: 2017 Dec 16 " Last Change: 2018 May 31
" Included patch from Jorge Maldonado Ventura to add the dialog element " Included patch from Jay Sitter to add WAI-ARIA htmlArg keywords
" "
" Please check :help html.vim for some comments and a description of the options " Please check :help html.vim for some comments and a description of the options
@@ -77,6 +77,29 @@ syn keyword htmlArg contained size src start target text type url
syn keyword htmlArg contained usemap ismap valign value vlink vspace width wrap syn keyword htmlArg contained usemap ismap valign value vlink vspace width wrap
syn match htmlArg contained "\<\(http-equiv\|href\|title\)="me=e-1 syn match htmlArg contained "\<\(http-equiv\|href\|title\)="me=e-1
" aria attributes
syn match htmlArg contained "\<\(aria-activedescendant\|aria-atomic\)\>"
syn match htmlArg contained "\<\(aria-autocomplete\|aria-busy\|aria-checked\)\>"
syn match htmlArg contained "\<\(aria-colcount\|aria-colindex\|aria-colspan\)\>"
syn match htmlArg contained "\<\(aria-controls\|aria-current\)\>"
syn match htmlArg contained "\<\(aria-describedby\|aria-details\)\>"
syn match htmlArg contained "\<\(aria-disabled\|aria-dropeffect\)\>"
syn match htmlArg contained "\<\(aria-errormessage\|aria-expanded\)\>"
syn match htmlArg contained "\<\(aria-flowto\|aria-grabbed\|aria-haspopup\)\>"
syn match htmlArg contained "\<\(aria-hidden\|aria-invalid\)\>"
syn match htmlArg contained "\<\(aria-keyshortcuts\|aria-label\)\>"
syn match htmlArg contained "\<\(aria-labelledby\|aria-level\|aria-live\)\>"
syn match htmlArg contained "\<\(aria-modal\|aria-multiline\)\>"
syn match htmlArg contained "\<\(aria-multiselectable\|aria-orientation\)\>"
syn match htmlArg contained "\<\(aria-owns\|aria-placeholder\|aria-posinset\)\>"
syn match htmlArg contained "\<\(aria-pressed\|aria-readonly\|aria-relevant\)\>"
syn match htmlArg contained "\<\(aria-required\|aria-roledescription\)\>"
syn match htmlArg contained "\<\(aria-rowcount\|aria-rowindex\|aria-rowspan\)\>"
syn match htmlArg contained "\<\(aria-selected\|aria-setsize\|aria-sort\)\>"
syn match htmlArg contained "\<\(aria-valuemax\|aria-valuemin\)\>"
syn match htmlArg contained "\<\(aria-valuenow\|aria-valuetext\)\>"
syn keyword htmlArg contained role
" Netscape extensions " Netscape extensions
syn keyword htmlTagName contained frame noframes frameset nobr blink syn keyword htmlTagName contained frame noframes frameset nobr blink
syn keyword htmlTagName contained layer ilayer nolayer spacer syn keyword htmlTagName contained layer ilayer nolayer spacer

View File

@@ -90,7 +90,7 @@ func! Test_check_colors()
let err['background'] = 'Should not issue :syn on' let err['background'] = 'Should not issue :syn on'
endif endif
" 7) Does not define filetype specfic groups like vimCommand, htmlTag, " 7) Does not define filetype specific groups like vimCommand, htmlTag,
let hi_groups = ['vim', 'html', 'python', 'sh', 'ruby'] let hi_groups = ['vim', 'html', 'python', 'sh', 'ruby']
for group in hi_groups for group in hi_groups
let pat='\Chi\%[ghlight]\s*\zs'.group.'\w\+\>' let pat='\Chi\%[ghlight]\s*\zs'.group.'\w\+\>'

View File

@@ -3039,7 +3039,7 @@ msgstr "-f\t\t\tNe uzi newcli por malfermi fenestrojn"
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <aparatdosiero>\t\tUzi <aparatdosiero>-n por eneligo" msgstr "-dev <aparatdosiero>\t\tUzi <aparatdosiero>-n por eneligo"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\t\tKomenci en araba reĝimo" msgstr "-A\t\t\tKomenci en araba reĝimo"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"

View File

@@ -3283,7 +3283,7 @@ msgstr "-f\t\tNe pas utiliser newcli pour l'ouverture des fen
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <p<>riph>\tUtiliser <p<>riph<70>rique> pour les E/S" msgstr "-dev <p<>riph>\tUtiliser <p<>riph<70>rique> pour les E/S"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\tD<74>marrer en mode arabe" msgstr "-A\t\tD<74>marrer en mode arabe"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"

View File

@@ -3071,8 +3071,8 @@ msgstr "-f\t\t\tN
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <gl<67>as>\t\tBain <20>s<EFBFBD>id as <gl<67>as> do I/A" msgstr "-dev <gl<67>as>\t\tBain <20>s<EFBFBD>id as <gl<67>as> do I/A"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\t\ttosaigh sa mh<6D>d Araibise" msgstr "-A\t\t\tTosaigh sa mh<6D>d Araibise"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"
msgstr "-H\t\t\tTosaigh sa mh<6D>d Eabhraise" msgstr "-H\t\t\tTosaigh sa mh<6D>d Eabhraise"

View File

@@ -3054,7 +3054,7 @@ msgstr "-f\t\t\t
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <device>\t\tI/O<><4F> <device> <20><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD>" msgstr "-dev <device>\t\tI/O<><4F> <device> <20><><EFBFBD><EFBFBD><EFBFBD>Ѥ<EFBFBD><D1A4><EFBFBD>"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\t\t<><74><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5><EFBFBD><EFBFBD><EFBFBD>ɤǵ<C9A4>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>" msgstr "-A\t\t\t<><74><EFBFBD><EFBFBD><EFBFBD>ӥ<EFBFBD><D3A5><EFBFBD><EFBFBD><EFBFBD>ɤǵ<C9A4>ư<EFBFBD><C6B0><EFBFBD><EFBFBD>"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"

View File

@@ -3054,7 +3054,7 @@ msgstr "-f\t\t\tウィンドウを開くのに newcli を使用しない"
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <device>\t\tI/Oに <device> を使用する" msgstr "-dev <device>\t\tI/Oに <device> を使用する"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\t\tアラビア語モードで起動する" msgstr "-A\t\t\tアラビア語モードで起動する"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"

View File

@@ -3075,7 +3075,7 @@ msgstr "-f\t\t\tНемој да користиш нов cli да отвориш
msgid "-dev <device>\t\tUse <device> for I/O" msgid "-dev <device>\t\tUse <device> for I/O"
msgstr "-dev <уређај>\t\tКористи <уређај> за У/И" msgstr "-dev <уређај>\t\tКористи <уређај> за У/И"
msgid "-A\t\t\tstart in Arabic mode" msgid "-A\t\t\tStart in Arabic mode"
msgstr "-A\t\t\tПокрени у Арапском режиму" msgstr "-A\t\t\tПокрени у Арапском режиму"
msgid "-H\t\t\tStart in Hebrew mode" msgid "-H\t\t\tStart in Hebrew mode"