mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-13 22:13:50 -05:00
23 lines
570 B
VimL
23 lines
570 B
VimL
let files = filter(globpath(&rtp, 'syntax/merlin.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
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
|