diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-09 10:10:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-09 10:10:22 +0100 |
commit | 59888b68ab68d974da36a0fae8edce6725ba2167 (patch) | |
tree | 1caa3736d10f57200129c02701f4639d49ed8c2b /runtime/syntax/man.vim | |
parent | 0ed31303b576a44ecf7d2c579110f69e26f9db60 (diff) | |
parent | eb44519b5debf740f692bb4ea19ad83b29749484 (diff) | |
download | rneovim-59888b68ab68d974da36a0fae8edce6725ba2167.tar.gz rneovim-59888b68ab68d974da36a0fae8edce6725ba2167.tar.bz2 rneovim-59888b68ab68d974da36a0fae8edce6725ba2167.zip |
Merge #7623 'man.vim: highlight bold, underlined text'
Diffstat (limited to 'runtime/syntax/man.vim')
-rw-r--r-- | runtime/syntax/man.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/syntax/man.vim b/runtime/syntax/man.vim index 0975b160ae..b8e605cb9a 100644 --- a/runtime/syntax/man.vim +++ b/runtime/syntax/man.vim @@ -18,6 +18,10 @@ highlight default link manOptionDesc Constant highlight default link manReference PreProc highlight default link manSubHeading Function +highlight default manUnderline cterm=underline gui=underline +highlight default manBold cterm=bold gui=bold +highlight default manItalic cterm=italic gui=italic + if &filetype != 'man' " May have been included by some other filetype. finish |