24468
|
1 " Vim filetype plugin file
|
|
2 " Language: Modula-2
|
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
4 " Last Change: 2021 Apr 08
|
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
|
14 setlocal comments=s0:(*,mb:\ ,ex:*)
|
|
15 setlocal commentstring=(*%s*)
|
|
16 setlocal formatoptions-=t formatoptions+=croql
|
|
17
|
|
18 if exists("loaded_matchit") && !exists("b:match_words")
|
|
19 " The second branch of the middle pattern is intended to match CASE labels
|
|
20 let b:match_words = '\<REPEAT\>:\<UNTIL\>,' ..
|
|
21 \ '\<\%(BEGIN\|CASE\|FOR\|IF\|LOOP\|WHILE\|WITH\)\>' ..
|
|
22 \ ':' ..
|
|
23 \ '\<\%(ELSIF\|ELSE\)\>\|\%(^\s*\)\@<=\w\+\%(\s*\,\s*\w\+\)\=\s*\:=\@!' ..
|
|
24 \ ':' ..
|
|
25 \ '\<END\>'
|
|
26 endif
|
|
27
|
|
28 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
|
29 let b:browsefilter = "Modula-2 Source Files (*.def *.mod)\t*.def;*.mod\n" ..
|
|
30 \ "All Files (*.*)\t*.*\n"
|
|
31 endif
|
|
32
|
|
33 let b:undo_ftplugin = "setl com< cms< fo< " ..
|
|
34 \ "| unlet! b:browsefilter b:match_words"
|
|
35
|
|
36 let &cpo = s:cpo_save
|
|
37 unlet s:cpo_save
|
|
38
|
|
39 " vim: nowrap sw=2 sts=2 ts=8 noet:
|