aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/help.vim
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2014-12-08 20:26:55 -0500
committerMichael Reed <m.reed@mykolab.com>2014-12-09 19:25:07 -0500
commit365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c (patch)
tree7a28dde50807e83ea1871272ba321f3c424b365a /runtime/syntax/help.vim
parent33b459b6724bd252c170b22e18a020d886791076 (diff)
downloadrneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.gz
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.bz2
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.zip
docs: Remove EBCDIC remnants
Diffstat (limited to 'runtime/syntax/help.vim')
-rw-r--r--runtime/syntax/help.vim12
1 files changed, 3 insertions, 9 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim
index c55d32ef7c..b306e66e59 100644
--- a/runtime/syntax/help.vim
+++ b/runtime/syntax/help.vim
@@ -19,15 +19,9 @@ if has("conceal")
else
syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<"
endif
-if has("ebcdic")
- syn match helpHyperTextJump "\\\@<!|[^"*|]\+|" contains=helpBar
- syn match helpHyperTextEntry "\*[^"*|]\+\*\s"he=e-1 contains=helpStar
- syn match helpHyperTextEntry "\*[^"*|]\+\*$" contains=helpStar
-else
- syn match helpHyperTextJump "\\\@<!|[#-)!+-~]\+|" contains=helpBar
- syn match helpHyperTextEntry "\*[#-)!+-~]\+\*\s"he=e-1 contains=helpStar
- syn match helpHyperTextEntry "\*[#-)!+-~]\+\*$" contains=helpStar
-endif
+syn match helpHyperTextJump "\\\@<!|[#-)!+-~]\+|" contains=helpBar
+syn match helpHyperTextEntry "\*[#-)!+-~]\+\*\s"he=e-1 contains=helpStar
+syn match helpHyperTextEntry "\*[#-)!+-~]\+\*$" contains=helpStar
if has("conceal")
syn match helpBar contained "|" conceal
syn match helpBacktick contained "`" conceal