diff options
Diffstat (limited to 'syntax')
| -rw-r--r-- | syntax/hackernews.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/syntax/hackernews.vim b/syntax/hackernews.vim new file mode 100644 index 0000000..314c889 --- /dev/null +++ b/syntax/hackernews.vim @@ -0,0 +1,12 @@ +" Vim syntax file + + +if exists("b:current_syntax") + finish +endif + + +syn match Comment /^\s*Comment.*$/ + + +let b:current_syntax = "hackernews" |
