diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2015-01-23 21:09:23 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2015-01-23 21:09:23 +0100 |
commit | 6745c49110838db9ac39e85bbcf690b40bc20f83 (patch) | |
tree | 3b1c42f67bacb5ddb5b6afc5b4610f4c238877a7 /syntax/tomdoc.vim | |
parent | 1a97304cf642e9f887122e162b1999768b60c9d7 (diff) | |
download | vim-polyglot-6745c49110838db9ac39e85bbcf690b40bc20f83.tar.gz vim-polyglot-6745c49110838db9ac39e85bbcf690b40bc20f83.zip |
Update all packagesv1.11.2
Diffstat (limited to 'syntax/tomdoc.vim')
-rw-r--r-- | syntax/tomdoc.vim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/syntax/tomdoc.vim b/syntax/tomdoc.vim new file mode 100644 index 00000000..ad607cd1 --- /dev/null +++ b/syntax/tomdoc.vim @@ -0,0 +1,18 @@ +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 |