Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: CTRL-H (e.g., ASCII manpages) |
Christian Brabandt | e978b45 | 2023-08-13 10:33:05 +0200 | [diff] [blame] | 3 | " Maintainer: The Vim Project <https://github.com/vim/vim> |
| 4 | " Last Change: 2023 Aug 10 |
| 5 | " Former Maintainer: Bram Moolenaar <Bram@vim.org> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | |
| 7 | " Existing syntax is kept, this file can be used as an addition |
| 8 | |
| 9 | " Recognize underlined text: _^Hx |
| 10 | syntax match CtrlHUnderline /_\b./ contains=CtrlHHide |
| 11 | |
| 12 | " Recognize bold text: x^Hx |
| 13 | syntax match CtrlHBold /\(.\)\b\1/ contains=CtrlHHide |
| 14 | |
| 15 | " Hide the CTRL-H (backspace) |
| 16 | syntax match CtrlHHide /.\b/ contained |
| 17 | |
| 18 | " Define the default highlighting. |
Bram Moolenaar | d857f0e | 2005-06-21 22:37:39 +0000 | [diff] [blame] | 19 | " Only used when an item doesn't have highlighting yet |
| 20 | hi def link CtrlHHide Ignore |
| 21 | hi def CtrlHUnderline term=underline cterm=underline gui=underline |
| 22 | hi def CtrlHBold term=bold cterm=bold gui=bold |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 23 | |
| 24 | " vim: ts=8 |