aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/after/syntax/help.vim
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2013-10-03 09:48:51 +0600
committerAnton Bobov <abobov@gmail.com>2013-10-03 09:53:41 +0600
commita909de07c5f982968cb8cd0f2101ac052f4a0034 (patch)
tree99111641ac662d8b437d885befe50ff1a3f3dbf9 /files/.vim/after/syntax/help.vim
parentede4983c110a5947fa034857a5e37bdbb03ab49a (diff)
Vim plugins cleaning up.
Diffstat (limited to 'files/.vim/after/syntax/help.vim')
-rw-r--r--files/.vim/after/syntax/help.vim24
1 files changed, 0 insertions, 24 deletions
diff --git a/files/.vim/after/syntax/help.vim b/files/.vim/after/syntax/help.vim
deleted file mode 100644
index 5215867..0000000
--- a/files/.vim/after/syntax/help.vim
+++ /dev/null
@@ -1,24 +0,0 @@
-" Help extensions for luarefvim
-" This is somewhat based on CRefVim
-" Maintainer: Luis Carvalho <lexcarvalho@gmail.com>
-" Last Change: May, 26, 2005
-" Version: 0.1
-
-" add three syntax classes: bold, emph (italic) and code -- similarly to html
-syn match helpIgnoreBold "#[a-zA-Z0-9&()\`\'\"\-\+\*=\[\]\{\}\.,;: ]\+#" contains=helpMatchBold
-syn match helpMatchBold "[a-zA-Z0-9&()\`\'\"\-\+\*=\[\]\{\}\.,;: ]\+" contained
-syn match helpIgnoreEmph "@[a-zA-Z0-9&()\`\'\"\-\+\*=\[\]\{\}\.,;: ]\+@" contains=helpMatchEmph
-syn match helpMatchEmph "[a-zA-Z0-9&()\`\'\"\-\+\*=\[\]\{\}\.,;: ]\+" contained
-" this match is the same as in CRefVim's help.vim (that is, uses $$):
-" the idea is to keep some degree of portability.
-syn match helpIgnoreCode "\$[a-zA-Z0-9@\\\*/\._=()\-+%<>&\^|!~\?:,\[\];{}#\`\'\" ]\+\$" contains=helpMatchCode
-syn match helpMatchCode "[a-zA-Z0-9@\\\*/\._=()\-+%<>&\^|!~\?:,\[\];{}#\`\'\" ]\+" contained
-
-" syn high links
-hi def link helpIgnoreBold Ignore
-hi def link helpIgnoreEmph Ignore
-hi def link helpIgnoreCode Ignore
-hi def link helpMatchBold Function
-hi def link helpMatchEmph Special
-hi def link helpMatchCode Comment
-