summaryrefslogtreecommitdiffstats
path: root/syntax/tomdoc.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-08-23 23:25:06 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-08-23 23:25:06 +0200
commit114a93bb7c73443d4d0caf9bd9c1875bb96d9d62 (patch)
tree147fd27a288ed8f6e3c361cab884db3a38483354 /syntax/tomdoc.vim
parentf3ab28a28761b6cd606833585c552490a1f5efe1 (diff)
downloadvim-polyglot-114a93bb7c73443d4d0caf9bd9c1875bb96d9d62.tar.gz
vim-polyglot-114a93bb7c73443d4d0caf9bd9c1875bb96d9d62.zip
Migrate ftdetect generation to ruby
Diffstat (limited to 'syntax/tomdoc.vim')
-rw-r--r--syntax/tomdoc.vim22
1 files changed, 0 insertions, 22 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