aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vim/my/after/syntax/vim.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/my/after/syntax/vim.vim')
-rw-r--r--.vim/my/after/syntax/vim.vim30
1 files changed, 0 insertions, 30 deletions
diff --git a/.vim/my/after/syntax/vim.vim b/.vim/my/after/syntax/vim.vim
deleted file mode 100644
index a6b0d31..0000000
--- a/.vim/my/after/syntax/vim.vim
+++ /dev/null
@@ -1,30 +0,0 @@
-scriptencoding utf-8
-
-
-if exists("b:current_syntax_my_vim")
- finish
-endif
-
-if b:current_syntax !=# 'vim'
- finish
-endif
-
-
-
-" Tags
-syn match vimrcDocTagFollowingName /@\(param\|var\|const\|field\)/ contained skipwhite nextgroup=vimrcDocName,vimrcDocName2
-syn match vimrcDocTagFollowingType /@\(return\|class\|ctor\|method\|type\)/ contained skipwhite nextgroup=vimrcDocType
-syn match vimrcDocName /\w\+/ contained skipwhite nextgroup=vimrcDocType
-syn match vimrcDocName2 /\[\w\+\]/hs=s+1,he=e-1 contained skipwhite nextgroup=vimrcDocType
-syn match vimrcDocType /(\w\+)/hs=s+1,he=e-1 contained skipwhite nextgroup=vimrcDocType
-
-syn cluster vimCommentGroup add=vimrcDocTagFollowingName,vimrcDocTagFollowingType
-
-hi def link vimrcDocTagFollowingName Statement
-hi def link vimrcDocTagFollowingType Statement
-hi def link vimrcDocName Identifier
-hi def link vimrcDocName2 Identifier
-hi def link vimrcDocType Type
-
-
-let b:current_syntax_my_vim = 1