mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-13 14:03:50 -05:00
Add reason support, closes #266
This commit is contained in:
17
syntax/merlin.vim
Normal file
17
syntax/merlin.vim
Normal file
@@ -0,0 +1,17 @@
|
||||
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'reason') != -1
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user