diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-04-29 20:04:26 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-03 17:47:31 -0400 |
commit | 818f7aefd2fe7eacd7135c5e3154934f24c85ca7 (patch) | |
tree | 013884a9455a0b09b5692469f8d955a31cd527b9 /runtime/syntax | |
parent | 28ad7b5026d731a832bf60ba4c497c9e3d97e9ff (diff) | |
download | rneovim-818f7aefd2fe7eacd7135c5e3154934f24c85ca7.tar.gz rneovim-818f7aefd2fe7eacd7135c5e3154934f24c85ca7.tar.bz2 rneovim-818f7aefd2fe7eacd7135c5e3154934f24c85ca7.zip |
doc: Remove Vi annotations
This removes all instances of '{not in Vi}', '{Vi: ... }', etc.
We don't care about Vi compatibility, so all of these annotations are
useless in nvim. This also removed the syntax definitions for these
items.
In addition, remove instances of '{only when compiled with +feature}'
adjacent to instances of '{not in Vi}' and friends.
Helped-by: David Bürgin <676c7473@gmail.com>
Helped-by: Felipe Morales <hel.sheep@gmail.com>
closes #2535
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/help.vim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index b306e66e59..d133c6a804 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -85,8 +85,6 @@ syn match helpSpecial "CTRL-PageDown" syn match helpSpecial "CTRL-Insert" syn match helpSpecial "CTRL-Del" syn match helpSpecial "CTRL-{char}" -syn region helpNotVi start="{Vi[: ]" start="{not" start="{only" end="}" contains=helpLeadBlank,helpHyperTextJump -syn match helpLeadBlank "^\s\+" contained " Highlight group items in their own color. syn match helpComment "\t[* ]Comment\t\+[a-z].*" @@ -140,7 +138,6 @@ if v:lang =~ '\<IT\>' || v:lang =~ '_IT\>' || v:lang =~? "italian" syn match helpSpecial "Nmi"me=e-2 syn match helpSpecial "Nmo"me=e-2 syn match helpSpecial "\[interv.]" - syn region helpNotVi start="{non" start="{solo" start="{disponibile" end="}" contains=helpLeadBlank,helpHyperTextJump endif syn sync minlines=40 @@ -161,7 +158,6 @@ hi def link helpVim Identifier hi def link helpCommand Comment hi def link helpExample Comment hi def link helpOption Type -hi def link helpNotVi Special hi def link helpSpecial Special hi def link helpNote Todo |