summaryrefslogblamecommitdiffstats
path: root/syntax/merlin.vim
blob: 995947046f584accd389537aeb5ef83c0647a081 (plain) (tree)
1
2
3
4
                                                          

        
 












                                                                
if !polyglot#util#IsEnabled('reason', expand('<sfile>:p'))
  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"