diff options
Diffstat (limited to 'syntax')
-rw-r--r-- | syntax/tomdoc.vim | 22 | ||||
-rw-r--r-- | syntax/xsl.vim | 2 |
2 files changed, 1 insertions, 23 deletions
diff --git a/syntax/tomdoc.vim b/syntax/tomdoc.vim deleted file mode 100644 index 34f3e270..00000000 --- a/syntax/tomdoc.vim +++ /dev/null @@ -1,22 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'tomdoc') == -1 - -syn keyword tomdocKeywords - \ Returns Yields Raises Examples Signature - \ containedin=.*Comment - \ contained - -syn match tomdocDescriptions - \ +\s*\(Public\|Internal\|Deprecated\):+he=e-1 - \ containedin=.*Comment - \ contained - -syn match tomdocArguments - \ +\s*[A-Za-z0-9_\-&\*:]*\(\s*- \)+he=e-3 - \ containedin=.*Comment - \ contained - -hi default link tomdocDescriptions String -hi default link tomdocKeywords String -hi default link tomdocArguments HELP - -endif diff --git a/syntax/xsl.vim b/syntax/xsl.vim index af423444..c24d978c 100644 --- a/syntax/xsl.vim +++ b/syntax/xsl.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'xls') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'xsl') == -1 " Vim syntax file " Language: XSLT 1.0 |