diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-13 16:21:04 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-13 21:35:47 -0300 |
commit | 549311db7d40050e8335583fda1c8be6cc1a4921 (patch) | |
tree | 5dbb9fd11a6565f16eeef68cb972f1f41d314a65 /runtime/syntax/help.vim | |
parent | f928c0a3a0fb17f7b114df233d56e3c2abe9146e (diff) | |
download | rneovim-549311db7d40050e8335583fda1c8be6cc1a4921.tar.gz rneovim-549311db7d40050e8335583fda1c8be6cc1a4921.tar.bz2 rneovim-549311db7d40050e8335583fda1c8be6cc1a4921.zip |
runtime: Enhance help.vim to highlight Nvim/NVIM
Diffstat (limited to 'runtime/syntax/help.vim')
-rw-r--r-- | runtime/syntax/help.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index 3368b1ddc5..c55d32ef7c 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -42,6 +42,8 @@ syn match helpNormal "|||" syn match helpNormal ":|vim:|" " for :help modeline syn match helpVim "\<Vim version [0-9][0-9.a-z]*" syn match helpVim "VIM REFERENCE.*" +syn match helpVim "\<Nvim\." +syn match helpVim "NVIM REFERENCE.*" syn match helpOption "'[a-z]\{2,\}'" syn match helpOption "'t_..'" syn match helpCommand "`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick |