diff options
author | Gabriel Holodak <gthepiper@gmail.com> | 2017-11-30 22:15:39 -0500 |
---|---|---|
committer | Gabriel Holodak <gthepiper@gmail.com> | 2017-12-27 23:27:14 -0500 |
commit | 6740c94562cc1b271a6ea2458ebb847a6e3665e2 (patch) | |
tree | 64e6ba9187cfffa181eaade1aa81ba7183fd6774 /runtime/syntax | |
parent | c28ce5f6191d233228d1688de300727e1ae42831 (diff) | |
download | rneovim-6740c94562cc1b271a6ea2458ebb847a6e3665e2.tar.gz rneovim-6740c94562cc1b271a6ea2458ebb847a6e3665e2.tar.bz2 rneovim-6740c94562cc1b271a6ea2458ebb847a6e3665e2.zip |
Add support for escape sequences
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/man.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/syntax/man.vim b/runtime/syntax/man.vim index 9eb613169c..0544fb29e2 100644 --- a/runtime/syntax/man.vim +++ b/runtime/syntax/man.vim @@ -21,6 +21,7 @@ highlight default link manSubHeading Function function! s:init_highlight_groups() highlight default manUnderline cterm=underline gui=underline highlight default manBold cterm=bold gui=bold + highlight default manItalic cterm=italic gui=italic endfunction augroup man_init_highlight_groups |