summaryrefslogtreecommitdiff
path: root/syntax/hackernews.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/hackernews.vim')
-rw-r--r--syntax/hackernews.vim12
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"