From 8baab3c8d7a6f22888bd581cd5c6098fd2e4b5a8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:44:24 +0200 Subject: Adding upstream version 2:8.1.0875. Signed-off-by: Daniel Baumann --- runtime/syntax/ctrlh.vim | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 runtime/syntax/ctrlh.vim (limited to 'runtime/syntax/ctrlh.vim') diff --git a/runtime/syntax/ctrlh.vim b/runtime/syntax/ctrlh.vim new file mode 100644 index 0000000..b4bf347 --- /dev/null +++ b/runtime/syntax/ctrlh.vim @@ -0,0 +1,23 @@ +" Vim syntax file +" Language: CTRL-H (e.g., ASCII manpages) +" Maintainer: Bram Moolenaar +" Last Change: 2005 Jun 20 + +" Existing syntax is kept, this file can be used as an addition + +" Recognize underlined text: _^Hx +syntax match CtrlHUnderline /_\b./ contains=CtrlHHide + +" Recognize bold text: x^Hx +syntax match CtrlHBold /\(.\)\b\1/ contains=CtrlHHide + +" Hide the CTRL-H (backspace) +syntax match CtrlHHide /.\b/ contained + +" Define the default highlighting. +" Only used when an item doesn't have highlighting yet +hi def link CtrlHHide Ignore +hi def CtrlHUnderline term=underline cterm=underline gui=underline +hi def CtrlHBold term=bold cterm=bold gui=bold + +" vim: ts=8 -- cgit v1.2.3