HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/Program Files/Git/usr/share/vim/vim91/syntax/modula2.vim
" Vim syntax file
" Language:		Modula-2
" Maintainer:		Doug Kearns <[email protected]>
" Previous Maintainer:	[email protected] (Peter Funk)
" Last Change:		2024 Jan 04
" 2025 Apr 16 by Vim Project (set 'cpoptions' for line continuation, #17121)

if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

let dialect = modula2#GetDialect()
exe "runtime! syntax/modula2/opt/" .. dialect .. ".vim"

let b:current_syntax = "modula2"

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: nowrap sw=2 sts=2 ts=8 noet: