From c2635665c5a378dc8ed14b0199202fa86b226ad9 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 27 Apr 2021 23:14:29 -0400 Subject: vim-patch:2c7f8c574f1f Update runtime files https://github.com/vim/vim/commit/2c7f8c574f1f8723d59adca3fec8fb89c41cf8c9 Omit the following line for man.vim: hi def link manFooter PreProc --- runtime/syntax/man.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/syntax/man.vim') diff --git a/runtime/syntax/man.vim b/runtime/syntax/man.vim index 7ac02c3f63..a01bd1c0e7 100644 --- a/runtime/syntax/man.vim +++ b/runtime/syntax/man.vim @@ -8,11 +8,11 @@ endif syntax case ignore syntax match manReference display '[^()[:space:]]\+([0-9nx][a-z]*)' syntax match manSectionHeading display '^\S.*$' -syntax match manTitle display '^\%1l.*$' +syntax match manHeader display '^\%1l.*$' syntax match manSubHeading display '^ \{3\}\S.*$' syntax match manOptionDesc display '^\s\+\%(+\|-\)\S\+' -highlight default link manTitle Title +highlight default link manHeader Title highlight default link manSectionHeading Statement highlight default link manOptionDesc Constant highlight default link manReference PreProc -- cgit