aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzandrmartin <zandrmartin@users.noreply.github.com>2017-11-14 21:08:50 +0000
committerJustin M. Keyes <justinkz@gmail.com>2017-11-14 22:08:50 +0100
commitf8d40e7d53d864b4ce22258a5696bae108e5ce2a (patch)
treeffc98df5a08d8c508b9c4226e95757ca15bf2ac6
parentc5f001a46a8e9eabd4fbc5a5a8503a74a6637c1c (diff)
downloadrneovim-f8d40e7d53d864b4ce22258a5696bae108e5ce2a.tar.gz
rneovim-f8d40e7d53d864b4ce22258a5696bae108e5ce2a.tar.bz2
rneovim-f8d40e7d53d864b4ce22258a5696bae108e5ce2a.zip
health.vim: define highlights as `default` (#7560)
-rw-r--r--runtime/autoload/health.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/autoload/health.vim b/runtime/autoload/health.vim
index b076f2456b..53d45afc2e 100644
--- a/runtime/autoload/health.vim
+++ b/runtime/autoload/health.vim
@@ -3,20 +3,20 @@ function! s:enhance_syntax() abort
syntax keyword healthError ERROR[:]
\ containedin=markdownCodeBlock,mkdListItemLine
- highlight link healthError Error
+ highlight default link healthError Error
syntax keyword healthWarning WARNING[:]
\ containedin=markdownCodeBlock,mkdListItemLine
- highlight link healthWarning WarningMsg
+ highlight default link healthWarning WarningMsg
syntax keyword healthSuccess OK[:]
\ containedin=markdownCodeBlock,mkdListItemLine
- highlight healthSuccess guibg=#5fff00 guifg=#080808 ctermbg=82 ctermfg=232
+ highlight default healthSuccess guibg=#5fff00 guifg=#080808 ctermbg=82 ctermfg=232
syntax match healthHelp "|.\{-}|" contains=healthBar
\ containedin=markdownCodeBlock,mkdListItemLine
syntax match healthBar "|" contained conceal
- highlight link healthHelp Identifier
+ highlight default link healthHelp Identifier
" We do not care about markdown syntax errors in :checkhealth output.
highlight! link markdownError Normal