2014-07-10 21:05:51 -07:00
|
|
|
" Vim syntax file
|
2024-01-16 10:45:57 -07:00
|
|
|
" Language: Modula-2
|
|
|
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
|
|
" Previous Maintainer: pf@artcom0.north.de (Peter Funk)
|
|
|
|
" Last Change: 2024 Jan 04
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2017-04-28 12:06:44 -07:00
|
|
|
if exists("b:current_syntax")
|
2014-07-10 21:05:51 -07:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2024-01-16 10:45:57 -07:00
|
|
|
let dialect = modula2#GetDialect()
|
|
|
|
exe "runtime! syntax/modula2/opt/" .. dialect .. ".vim"
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
let b:current_syntax = "modula2"
|
|
|
|
|
2024-01-16 10:45:57 -07:00
|
|
|
" vim: nowrap sw=2 sts=2 ts=8 noet:
|