blob: 8768cf102854415c76e1b4b7da51b4d539e25315 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if polyglot#init#is_disabled(expand('<sfile>:p'), 'reason', 'syntax/merlin.vim')
finish
endif
" Vim syntax file for editing merlin project files
if exists("b:current_syntax")
finish
endif
syn keyword merlinKeyword S B SUFFIX PKG REC EXT PRJ FLG CMI CMT
syn match merlinComment "\v#.*$"
hi link merlinKeyword Keyword
hi link merlinComment Comment
let b:current_syntax = "merlin"
|