summaryrefslogtreecommitdiffstats
path: root/runtime/colors
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-15 18:55:18 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-15 18:55:18 +0200
commit3d1cde8a2f28dce2c82d2b2b4c5e35e6662030e0 (patch)
tree997f03c1bd793148efe3387f64c9e3efdcb44be9 /runtime/colors
parente3c37d8ebf9dbbf210fde4a5fb28eb1f2a492a34 (diff)
Update runtime files.
Diffstat (limited to 'runtime/colors')
-rw-r--r--runtime/colors/tools/check_colors.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/colors/tools/check_colors.vim b/runtime/colors/tools/check_colors.vim
index de77a382b0..b0146cc677 100644
--- a/runtime/colors/tools/check_colors.vim
+++ b/runtime/colors/tools/check_colors.vim
@@ -185,7 +185,7 @@ func! Test_check_colors()
" 9) Normal should be defined first, not use reverse, fg or bg
call cursor(1,1)
- let pat = 'hi\%[light] \+\%(link\|clear\)\@!\w\+\>'
+ let pat = 'hi\%[ghlight] \+\%(link\|clear\)\@!\w\+\>'
call search(pat, 'cW') " Look for the first hi def, skipping `hi link` and `hi clear`
if getline('.') !~# '\m\<Normal\>'
let err['highlight']['Normal'] = 'Should be defined first'