[Marks] Use foreground color for "Number" highlight group (#581)

This commit is contained in:
Junegunn Choi
2018-08-29 17:54:22 +09:00
parent e042ec03a2
commit f52fcd3d6c

View File

@@ -941,7 +941,7 @@ endfunction
" Marks
" ------------------------------------------------------------------
function! s:format_mark(line)
return substitute(a:line, '\S', '\=s:yellow(submatch(0))', '')
return substitute(a:line, '\S', '\=s:yellow(submatch(0), "Number")', '')
endfunction
function! s:mark_sink(lines)