Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(after syntax): use hi def #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions after/syntax/yaml.vim
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ syn match yamlAlias "*\S\+"

" Setup the highlighting links

hi link yamlConstant Keyword
hi link yamlIndicator PreCondit
hi link yamlAnchor Function
hi link yamlAlias Function
hi link yamlKey Identifier
hi link yamlType Type
hi def link yamlConstant Keyword
hi def link yamlIndicator PreCondit
hi def link yamlAnchor Function
hi def link yamlAlias Function
hi def link yamlKey Identifier
hi def link yamlType Type

hi link yamlComment Comment
hi link yamlInline Operator
hi link yamlBlock Operator
hi link yamlString String
hi link yamlEscape Special
hi def link yamlComment Comment
hi def link yamlInline Operator
hi def link yamlBlock Operator
hi def link yamlString String
hi def link yamlEscape Special