diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-12-09 02:13:21 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-12-30 21:09:39 +0100 |
commit | e83c0a267d92b919ca7e007069595d0e26e7407b (patch) | |
tree | 6d4cc6181d4923db92c113e35d457e475ddb9a95 | |
parent | e834660b2b7f273c4fa7c6279ec999e1a167d94a (diff) | |
download | rneovim-e83c0a267d92b919ca7e007069595d0e26e7407b.tar.gz rneovim-e83c0a267d92b919ca7e007069595d0e26e7407b.tar.bz2 rneovim-e83c0a267d92b919ca7e007069595d0e26e7407b.zip |
help: Do not highlight "Nvim."
This was added in 549311db7d400 for some reason, it usually just looks
weird.
-rw-r--r-- | runtime/syntax/help.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index 972970f619..db5ad3728c 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -36,7 +36,6 @@ 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_..'" |