blob: 889f637460b759f5fcd2f793d5597bb1befc526a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
" Vim syntax file
if exists("b:current_syntax")
finish
endif
syn match Comment /^\s*Comment.*$/
syn region Constant start="\[http" end="\]"
syn region Statement start="^\s+ " end="^\s "
let b:current_syntax = "hackernews"
|