diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-09 20:12:19 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-09 20:12:19 -0500 |
commit | b11ada1aba4c6d15128446b9669b5993ce937d11 (patch) | |
tree | 5d67b48c5e3b0efa82deea612e9113077828fbd9 /runtime/syntax/help.vim | |
parent | c5b9e5d1d317b74d4adf7637cd9081be4ee52722 (diff) | |
parent | f33abc4661d069727439958cedeaa4883ea3f298 (diff) | |
download | rneovim-b11ada1aba4c6d15128446b9669b5993ce937d11.tar.gz rneovim-b11ada1aba4c6d15128446b9669b5993ce937d11.tar.bz2 rneovim-b11ada1aba4c6d15128446b9669b5993ce937d11.zip |
Merge pull request #1628 from Pyrohh/misc-cleanup
More misc. platform cleanup
Diffstat (limited to 'runtime/syntax/help.vim')
-rw-r--r-- | runtime/syntax/help.vim | 12 |
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 |