mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
@@ -666,7 +666,10 @@ FileChangedRO Before making the first change to a read-only
|
||||
ExitPre When using `:quit`, `:wq` in a way it makes
|
||||
Vim exit, or using `:qall`, just after
|
||||
|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 When Vim notices that the modification time of
|
||||
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
|
||||
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
|
||||
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").
|
||||
|
||||
*gzip-example*
|
||||
|
@@ -844,7 +844,8 @@ These modifiers can be given, in this order:
|
||||
directory.
|
||||
:. Reduce file name to be relative to current directory, if
|
||||
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 ":~:.".
|
||||
:h Head of the file name (the last component and any separators
|
||||
removed). Cannot be used with :e, :r or :t.
|
||||
|
@@ -249,7 +249,7 @@ g:decada.Make_Command string
|
||||
External command used for |g:decada.Make()| (|'makeprg'|).
|
||||
|
||||
*g:decada.Error_Format*
|
||||
g:decada.Error_Format| string
|
||||
g:decada.Error_Format string
|
||||
Error format (|'errorformat'|).
|
||||
|
||||
==============================================================================
|
||||
|
@@ -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*
|
||||
|
@@ -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
|
||||
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
|
||||
|
||||
will be repeatable by the |.|to the expected
|
||||
will be repeatable by using |.| to the expected
|
||||
|
||||
Lorem ipsum (dolor)
|
||||
|
||||
|
@@ -1947,7 +1947,7 @@ set "lite_minlines" to the value you desire. Example: >
|
||||
|
||||
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
|
||||
users writing only C programs. If you want to use LPC syntax in Vim, you
|
||||
should set a variable in your vimrc file: >
|
||||
|
@@ -3,7 +3,7 @@
|
||||
" Maintainer: Debian Vim Maintainers
|
||||
" Former Maintainers: Gerfried Fuchs <alfie@ist.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
|
||||
|
||||
" Standard syntax initialization
|
||||
@@ -40,8 +40,8 @@ let s:pairs = [
|
||||
|
||||
" Define some common expressions we can use later on
|
||||
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(s:archs, {k,v -> 'any-'.v}))
|
||||
exe 'syn keyword debcontrolArchitecture contained '. join(map(copy(s:kernels), {k,v -> v .'-any'}))
|
||||
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:pairs)
|
||||
|
||||
|
@@ -3,8 +3,8 @@
|
||||
" Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net>
|
||||
" Previous Maintainer: Claudio Fleiner <claudio@fleiner.com>
|
||||
" Repository: https://notabug.org/jorgesumle/vim-html-syntax
|
||||
" Last Change: 2017 Dec 16
|
||||
" Included patch from Jorge Maldonado Ventura to add the dialog element
|
||||
" Last Change: 2018 May 31
|
||||
" 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
|
||||
@@ -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 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
|
||||
syn keyword htmlTagName contained frame noframes frameset nobr blink
|
||||
syn keyword htmlTagName contained layer ilayer nolayer spacer
|
||||
|
@@ -90,7 +90,7 @@ func! Test_check_colors()
|
||||
let err['background'] = 'Should not issue :syn on'
|
||||
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']
|
||||
for group in hi_groups
|
||||
let pat='\Chi\%[ghlight]\s*\zs'.group.'\w\+\>'
|
||||
|
@@ -3039,7 +3039,7 @@ msgstr "-f\t\t\tNe uzi newcli por malfermi fenestrojn"
|
||||
msgid "-dev <device>\t\tUse <device> for I/O"
|
||||
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"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
|
@@ -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"
|
||||
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"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
|
@@ -3071,8 +3071,8 @@ msgstr "-f\t\t\tN
|
||||
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"
|
||||
|
||||
msgid "-A\t\t\tstart in Arabic mode"
|
||||
msgstr "-A\t\t\ttosaigh sa mh<6D>d Araibise"
|
||||
msgid "-A\t\t\tStart in Arabic mode"
|
||||
msgstr "-A\t\t\tTosaigh sa mh<6D>d Araibise"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
msgstr "-H\t\t\tTosaigh sa mh<6D>d Eabhraise"
|
||||
|
@@ -3054,7 +3054,7 @@ msgstr "-f\t\t\t
|
||||
msgid "-dev <device>\t\tUse <device> for I/O"
|
||||
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>"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
|
@@ -3054,7 +3054,7 @@ msgstr "-f\t\t\tウィンドウを開くのに newcli を使用しない"
|
||||
msgid "-dev <device>\t\tUse <device> for I/O"
|
||||
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アラビア語モードで起動する"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
|
@@ -3075,7 +3075,7 @@ msgstr "-f\t\t\tНемој да користиш нов cli да отвориш
|
||||
msgid "-dev <device>\t\tUse <device> for I/O"
|
||||
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Покрени у Арапском режиму"
|
||||
|
||||
msgid "-H\t\t\tStart in Hebrew mode"
|
||||
|
Reference in New Issue
Block a user