diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-11-19 22:28:06 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-11-19 22:28:06 +0900 |
| commit | ed4b5f69144ee6f93e0c7059b3676c230cbce581 (patch) | |
| tree | d5a7ff65fe56c75d6589f00cc9de49dee5d48db5 /.vim/my/after/syntax/vim.vim | |
| parent | 0d4a7fe77275a40996a710b673e58b4d2d78a8f4 (diff) | |
| download | dotfiles-ed4b5f69144ee6f93e0c7059b3676c230cbce581.tar.gz dotfiles-ed4b5f69144ee6f93e0c7059b3676c230cbce581.tar.zst dotfiles-ed4b5f69144ee6f93e0c7059b3676c230cbce581.zip | |
vim: make vim XDG-Base-Directory-aware
Diffstat (limited to '.vim/my/after/syntax/vim.vim')
| -rw-r--r-- | .vim/my/after/syntax/vim.vim | 30 |
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 |
