summaryrefslogblamecommitdiffstats
path: root/syntax/merlin.vim
blob: 97f400d1692a4e6cc7f731257acd937d67d6a8ef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                                                                               












                                                                
     
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'reason') == -1
" 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"

endif