blob: 7daba3a99d4237ffa8427565b42fe5eade47920f (
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=" " end=" "
let b:current_syntax = "hackernews"
|