vim-patch:ff78155aa175

Update runtime files
ff78155aa1

Omit menu_info().
This commit is contained in:
Jan Edmund Lazo 2021-04-27 21:26:36 -04:00
parent e7f6c52014
commit c287e734f1
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
7 changed files with 41 additions and 21 deletions

View File

@ -432,6 +432,8 @@ Special characters in the list, just before the rhs:
* The menu was defined with "nore" to disallow remapping. * The menu was defined with "nore" to disallow remapping.
& The menu was defined with "<script>" to allow remapping script-local & The menu was defined with "<script>" to allow remapping script-local
mappings only. mappings only.
s The menu was defined with "<silent>" to avoid showing what it is
mapped to when triggered.
- The menu was disabled. - The menu was disabled.
Note that hitting <Tab> while entering a menu name after a menu command may Note that hitting <Tab> while entering a menu name after a menu command may

View File

@ -193,7 +193,7 @@ CTRL-W CTRL_N *CTRL-W_CTRL-N*
height). Reduces the current window height to create room height). Reduces the current window height to create room
(and others, if the 'equalalways' option is set). (and others, if the 'equalalways' option is set).
:[N]sv[iew] [++opt] [+cmd] {file} *:sv* *:sview* *splitview* :[N]sv[iew] [++opt] [+cmd] [file] *:sv* *:sview* *splitview*
Same as ":split", but set 'readonly' option for this buffer. Same as ":split", but set 'readonly' option for this buffer.
:[N]sf[ind] [++opt] [+cmd] {file} *:sf* *:sfi* *:sfind* *splitfind* :[N]sf[ind] [++opt] [+cmd] {file} *:sf* *:sfi* *:sfind* *splitfind*

View File

@ -10,6 +10,5 @@
setlocal comments=s1:/*,mb:*,ex:*/,:///,:// setlocal comments=s1:/*,mb:*,ex:*/,:///,://
setlocal expandtab setlocal expandtab
setlocal ts=2 setlocal sw=4 sts=4
setlocal sw=2
setlocal smartindent setlocal smartindent

17
runtime/syntax/bsdl.vim Normal file
View File

@ -0,0 +1,17 @@
" Vim syntax file
" Language: Boundary Scan Description Language (BSDL)
" Maintainer: Daniel Kho <daniel.kho@logik.haus>
" Last Changed: 2020 Mar 19 by Daniel Kho
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
" Read in VHDL syntax files
runtime! syntax/vhdl.vim
unlet b:current_syntax
let b:current_syntax = "bsdl"
" vim: ts=8

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: 2019 Dec 24 " Last Change: 2020 Mar 17
" Included patch from Jorge Maldonado Ventura to add the dialog element " Included patch from Florian Breisch to add the summary element
" "
" 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
@ -61,7 +61,8 @@ syn keyword htmlTagName contained datalist details dialog embed figcaption
syn keyword htmlTagName contained figure footer header hgroup keygen main syn keyword htmlTagName contained figure footer header hgroup keygen main
syn keyword htmlTagName contained mark menuitem meter nav output picture syn keyword htmlTagName contained mark menuitem meter nav output picture
syn keyword htmlTagName contained progress rb rp rt rtc ruby section syn keyword htmlTagName contained progress rb rp rt rtc ruby section
syn keyword htmlTagName contained slot source template time track video wbr syn keyword htmlTagName contained slot source summary template time track
syn keyword htmlTagName contained video wbr
" legal arg names " legal arg names
syn keyword htmlArg contained action syn keyword htmlArg contained action

View File

@ -1,23 +1,24 @@
" Vim syntax file " Vim syntax file
" Language: Jargon File " Language: Jargon File
" Maintainer: Dan Church (https://github.com/h3xx) " Maintainer: Dan Church (https://github.com/h3xx)
" Last Change: 2019 Sep 27 " Last Change: 2020 Mar 16
" "
" quit when a syntax file was already loaded " quit when a syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")
finish finish
endif endif
syn match jargonChaptTitle /:[^:]*:/ syn region jargonHeader start="^:" end="$" contains=jargonChaptTitle
syn match jargonEmailAddr /[^<@ ^I]*@[^ ^I>]*/ syn match jargonChaptTitle /:[^:]*:/ contained
syn match jargonUrl +\(http\|ftp\)://[^\t )"]*+ syn match jargonEmailAddr /[+._A-Za-z0-9-]\+@[+._A-Za-z0-9-]\+/
syn region jargonMark start="{" end="}" syn match jargonUrl +\(https\?\|ftp\)://[^\t )"]*+
syn region jargonMark start="{[^\t {}]" end="}"
" Define the default highlighting. " Define the default highlighting.
" Only when an item doesn't have highlighting yet " Only when an item doesn't have highlighting yet
hi def link jargonChaptTitle Title hi def link jargonChaptTitle Title
hi def link jargonEmailAddr Comment hi def link jargonEmailAddr Comment
hi def link jargonUrl Comment hi def link jargonUrl Comment
hi def link jargonMark Label hi def link jargonMark Label
let b:current_syntax = "jargon" let b:current_syntax = "jargon"

View File

@ -1,9 +1,9 @@
" Vim syntax file " Vim syntax file
" Language: VHDL [VHSIC (Very High Speed Integrated Circuit) Hardware Description Language] " Language: VHDL [VHSIC (Very High Speed Integrated Circuit) Hardware Description Language]
" Maintainer: Daniel Kho <daniel.kho@tauhop.com> " Maintainer: Daniel Kho <daniel.kho@logik.haus>
" Previous Maintainer: Czo <Olivier.Sirol@lip6.fr> " Previous Maintainer: Czo <Olivier.Sirol@lip6.fr>
" Credits: Stephan Hegel <stephan.hegel@snc.siemens.com.cn> " Credits: Stephan Hegel <stephan.hegel@snc.siemens.com.cn>
" Last Changed: 2018 May 06 by Daniel Kho " Last Changed: 2020 Mar 09 by Daniel Kho
" quit when a syntax file was already loaded " quit when a syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")
@ -43,7 +43,7 @@ syn keyword vhdlStatement sequence strong
syn keyword vhdlStatement then to transport type syn keyword vhdlStatement then to transport type
syn keyword vhdlStatement unaffected units until use syn keyword vhdlStatement unaffected units until use
syn keyword vhdlStatement variable syn keyword vhdlStatement variable
" VHDL-2017 interface " VHDL-2019 interface
syn keyword vhdlStatement view syn keyword vhdlStatement view
syn keyword vhdlStatement vmode vprop vunit syn keyword vhdlStatement vmode vprop vunit
syn keyword vhdlStatement wait when while with syn keyword vhdlStatement wait when while with
@ -124,7 +124,7 @@ syn match vhdlAttribute "\'succ"
syn match vhdlAttribute "\'val" syn match vhdlAttribute "\'val"
syn match vhdlAttribute "\'image" syn match vhdlAttribute "\'image"
syn match vhdlAttribute "\'value" syn match vhdlAttribute "\'value"
" VHDL-2017 interface attribute " VHDL-2019 interface attribute
syn match vhdlAttribute "\'converse" syn match vhdlAttribute "\'converse"
syn keyword vhdlBoolean true false syn keyword vhdlBoolean true false
@ -167,7 +167,7 @@ syn match vhdlOperator "=\|\/=\|>\|<\|>="
syn match vhdlOperator "<=\|:=" syn match vhdlOperator "<=\|:="
syn match vhdlOperator "=>" syn match vhdlOperator "=>"
" VHDL-2017 concurrent signal association (spaceship) operator " VHDL-202x concurrent signal association (spaceship) operator
syn match vhdlOperator "<=>" syn match vhdlOperator "<=>"
" VHDL-2008 conversion, matching equality/non-equality operators " VHDL-2008 conversion, matching equality/non-equality operators
@ -188,7 +188,7 @@ syn match vhdlError "\(<\)[&+\-\/\\]\+"
syn match vhdlError "[>=&+\-\/\\]\+\(<\)" syn match vhdlError "[>=&+\-\/\\]\+\(<\)"
" Covers most operators " Covers most operators
" support negative sign after operators. E.g. q<=-b; " support negative sign after operators. E.g. q<=-b;
" Supports VHDL-2017 spaceship (concurrent simple signal association). " Supports VHDL-202x spaceship (concurrent simple signal association).
syn match vhdlError "\(<=\)[<=&+\*\\?:]\+" syn match vhdlError "\(<=\)[<=&+\*\\?:]\+"
syn match vhdlError "[>=&+\-\*\\:]\+\(=>\)" syn match vhdlError "[>=&+\-\*\\:]\+\(=>\)"
syn match vhdlError "\(&\|+\|\-\|\*\*\|\/=\|??\|?=\|?\/=\|?<=\|?>=\|>=\|:=\|=>\)[<>=&+\*\\?:]\+" syn match vhdlError "\(&\|+\|\-\|\*\*\|\/=\|??\|?=\|?\/=\|?<=\|?>=\|>=\|:=\|=>\)[<>=&+\*\\?:]\+"