summaryrefslogtreecommitdiffstats
path: root/runtime/colors
diff options
context:
space:
mode:
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'