diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
commit | 27903c5b8656c796564ef073c1ebe77a2f0154e1 (patch) | |
tree | 2b0a3a14494d7976fb79a7517706e25d2a95d080 /syntax/inittab.vim | |
parent | d5e38fa97bc50a93a66473d6cd7072fbcbadda57 (diff) | |
download | vim-polyglot-3.0.0.tar.gz vim-polyglot-3.0.0.zip |
Revert inlining basic language packv3.0.0
Diffstat (limited to '')
-rw-r--r-- | syntax/inittab.vim | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/syntax/inittab.vim b/syntax/inittab.vim deleted file mode 100644 index c50100b9..00000000 --- a/syntax/inittab.vim +++ /dev/null @@ -1,67 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim syntax file -" This is a GENERATED FILE. Please always refer to source file at the URI below. -" Language: SysV-compatible init process control file `inittab' -" Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz> -" Last Change: 2002-09-13 -" URL: http://physics.muni.cz/~yeti/download/syntax/inittab.vim - -" Setup -" quit when a syntax file was already loaded -if exists("b:current_syntax") - finish -endif - -syn case match - -" Base constructs -syn match inittabError "[^:]\+:"me=e-1 contained -syn match inittabError "[^:]\+$" contained -syn match inittabComment "^[#:].*$" contains=inittabFixme -syn match inittabComment "#.*$" contained contains=inittabFixme -syn keyword inittabFixme FIXME TODO XXX NOT - -" Shell -syn region inittabShString start=+"+ end=+"+ skip=+\\\\\|\\\"+ contained -syn region inittabShString start=+'+ end=+'+ contained -syn match inittabShOption "\s[-+][[:alnum:]]\+"ms=s+1 contained -syn match inittabShOption "\s--[:alnum:][-[:alnum:]]*"ms=s+1 contained -syn match inittabShCommand "/\S\+" contained -syn cluster inittabSh add=inittabShOption,inittabShString,inittabShCommand - -" Keywords -syn keyword inittabActionName respawn wait once boot bootwait off ondemand sysinit powerwait powerfail powerokwait powerfailnow ctrlaltdel kbrequest initdefault contained - -" Line parser -syn match inittabId "^[[:alnum:]~]\{1,4}" nextgroup=inittabColonRunLevels,inittabError -syn match inittabColonRunLevels ":" contained nextgroup=inittabRunLevels,inittabColonAction,inittabError -syn match inittabRunLevels "[0-6A-Ca-cSs]\+" contained nextgroup=inittabColonAction,inittabError -syn match inittabColonAction ":" contained nextgroup=inittabAction,inittabError -syn match inittabAction "\w\+" contained nextgroup=inittabColonProcess,inittabError contains=inittabActionName -syn match inittabColonProcess ":" contained nextgroup=inittabProcessPlus,inittabProcess,inittabError -syn match inittabProcessPlus "+" contained nextgroup=inittabProcess,inittabError -syn region inittabProcess start="/" end="$" transparent oneline contained contains=@inittabSh,inittabComment - -" Define the default highlighting - -hi def link inittabComment Comment -hi def link inittabFixme Todo -hi def link inittabActionName Type -hi def link inittabError Error -hi def link inittabId Identifier -hi def link inittabRunLevels Special - -hi def link inittabColonProcess inittabColon -hi def link inittabColonAction inittabColon -hi def link inittabColonRunLevels inittabColon -hi def link inittabColon PreProc - -hi def link inittabShString String -hi def link inittabShOption Special -hi def link inittabShCommand Statement - - -let b:current_syntax = "inittab" - -endif |