78 lines
3.6 KiB
VimL
78 lines
3.6 KiB
VimL
|
"=============================================================================
|
||
|
" FILE: syntax/snippet.vim
|
||
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||
|
" Last Modified: 15 Sep 2010
|
||
|
" License: MIT license {{{
|
||
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||
|
" a copy of this software and associated documentation files (the
|
||
|
" "Software"), to deal in the Software without restriction, including
|
||
|
" without limitation the rights to use, copy, modify, merge, publish,
|
||
|
" distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
" permit persons to whom the Software is furnished to do so, subject to
|
||
|
" the following conditions:
|
||
|
"
|
||
|
" The above copyright notice and this permission notice shall be included
|
||
|
" in all copies or substantial portions of the Software.
|
||
|
"
|
||
|
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
|
" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||
|
" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||
|
" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||
|
" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||
|
" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
" }}}
|
||
|
"=============================================================================
|
||
|
|
||
|
let s:save_cpo = &cpo
|
||
|
set cpo&vim
|
||
|
|
||
|
if version < 700
|
||
|
syntax clear
|
||
|
elseif exists("b:current_syntax")
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
syn region SnippetPrevWord start=+'+ end=+'+ contained
|
||
|
syn region SnippetPrevWord start=+"+ end=+"+ contained
|
||
|
syn region SnippetEval start=+\\\@<!`+ end=+\\\@<!`+ contained
|
||
|
syn match SnippetWord '^\s\+.*$' contains=SnippetEval,SnippetExpand,SnippetEscape
|
||
|
syn match SnippetExpand '\${\d\+\%(:.\{-}\)\?\\\@<!}' contained
|
||
|
syn match SnippetVariable '\$\d\+' contained
|
||
|
syn match SnippetComment '^#.*$'
|
||
|
syn match SnippetEscape '\\[`]' contained
|
||
|
|
||
|
syn match SnippetKeyword '^\%(include\|snippet\|abbr\|prev_word\|delete\|alias\)' contained
|
||
|
syn match SnippetPrevWords '^prev_word\s\+.*$' contains=SnippetPrevWord,SnippetKeyword
|
||
|
syn match SnippetStatementName '^snippet\s.*$' contains=SnippetName,SnippetKeyword
|
||
|
syn match SnippetName '\s\+.*$' contained
|
||
|
syn match SnippetStatementAbbr '^abbr\s.*$' contains=SnippetAbbr,SnippetKeyword
|
||
|
syn match SnippetAbbr '\s\+.*$' contained
|
||
|
syn match SnippetStatementRank '^rank\s.*$' contains=SnippetRank,SnippetKeyword
|
||
|
syn match SnippetRank '\s\+\d\+$' contained
|
||
|
syn match SnippetStatementInclude '^include\s.*$' contains=SnippetInclude,SnippetKeyword
|
||
|
syn match SnippetInclude '\s\+.*$' contained
|
||
|
syn match SnippetStatementDelete '^delete\s.*$' contains=SnippetDelete,SnippetKeyword
|
||
|
syn match SnippetDelete '\s\+.*$' contained
|
||
|
syn match SnippetStatementAlias '^alias\s.*$' contains=SnippetAlias,SnippetKeyword
|
||
|
syn match SnippetAlias '\s\+.*$' contained
|
||
|
|
||
|
hi def link SnippetKeyword Statement
|
||
|
hi def link SnippetPrevWord String
|
||
|
hi def link SnippetName Identifier
|
||
|
hi def link SnippetAbbr Normal
|
||
|
hi def link SnippetEval Type
|
||
|
hi def link SnippetWord String
|
||
|
hi def link SnippetExpand Special
|
||
|
hi def link SnippetVariable Special
|
||
|
hi def link SnippetComment Comment
|
||
|
hi def link SnippetInclude PreProc
|
||
|
hi def link SnippetDelete PreProc
|
||
|
hi def link SnippetAlias Identifier
|
||
|
hi def link SnippetEscape Special
|
||
|
|
||
|
let b:current_syntax = "snippet"
|
||
|
|
||
|
let &cpo = s:save_cpo
|
||
|
unlet s:save_cpo
|