diff options
| author | ryanss | 2015-02-09 15:49:26 -0500 |
|---|---|---|
| committer | ryanss | 2015-02-09 15:49:26 -0500 |
| commit | 985fab2bbdac01dae965dec6d48c2a978e6e8f3d (patch) | |
| tree | 72a75e091d35863cf2285d3805208934e186ef96 /syntax | |
| parent | d62b290db6334e57e2fbd727ef6b78b28a4f0848 (diff) | |
| download | vim-hn-985fab2bbdac01dae965dec6d48c2a978e6e8f3d.tar.gz | |
Fix code block syntax region regex
Diffstat (limited to 'syntax')
| -rw-r--r-- | syntax/hackernews.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/hackernews.vim b/syntax/hackernews.vim index 419fe69..f4817d6 100644 --- a/syntax/hackernews.vim +++ b/syntax/hackernews.vim @@ -43,7 +43,7 @@ syn match Comment /^\s*Comment.*$/ syn region Constant start="\[http" end="\]" " Highlight code blocks -syn region Statement start="^\s+ " end="^\s " +syn region Statement start="^\s\+ " end="^\s\+ " " Highlight Hacker News header orange syn match Title /^┌.*$/ |
