Mercurial > vim
annotate runtime/ftplugin/modula3.vim @ 34872:d8c90ada53f5
Added tag v9.1.0302 for changeset 23dc393eadc70893fb2ba0a451f3ae85eed0d945
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 10 Apr 2024 22:45:03 +0200 |
parents | 8ae680be2a51 |
children | 7c7432a53a6c |
rev | line source |
---|---|
24468 | 1 " Vim filetype plugin file |
2 " Language: Modula-3 | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
4 " Last Change: 2024 Jan 14 |
24468 | 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 | |
29150 | 17 setlocal suffixesadd+=.m3 |
18 setlocal formatprg=m3pp | |
19 | |
20 let b:undo_ftplugin = "setlocal com< cms< fo< fp< sua<" | |
24468 | 21 |
22 if exists("loaded_matchit") && !exists("b:match_words") | |
23 let b:match_words = '\<REPEAT\>:\<UNTIL\>,' .. | |
29150 | 24 \ '\<\%(BEGIN\|CASE\|FOR\|IF\|LOCK\|LOOP\|TRY\|TYPECASE\|WHILE\|WITH\|RECORD\|OBJECT\)\>' .. |
25 \ ':' .. | |
26 \ '\<\%(ELSIF\|ELSE\|EXCEPT\|FINALLY\|METHODS\|OVERRIDES\)\>\|\%(^\s*\)\@<=\S.*=>' .. | |
24468 | 27 \ ':' .. |
29150 | 28 \ '\<END\>,' .. |
29 \ '(\*:\*),<\*:\*>' | |
30 let b:undo_ftplugin ..= " | unlet! b:match_words" | |
24468 | 31 endif |
32 | |
33 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") | |
34134
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
34 let b:browsefilter = "Modula-3 Source Files (*.m3, *.i3, *.mg, *ig)\t*.m3;*.i3;*.mg;*.ig\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
35 if has("win32") |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
36 let b:browsefilter ..= "All Files (*.*)\t*\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
37 else |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
38 let b:browsefilter ..= "All Files (*)\t*\n" |
8ae680be2a51
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents:
29150
diff
changeset
|
39 endif |
29150 | 40 let b:undo_ftplugin ..= " | unlet! b:browsefilter" |
24468 | 41 endif |
42 | |
43 let &cpo = s:cpo_save | |
44 unlet s:cpo_save | |
45 | |
46 " vim: nowrap sw=2 sts=2 ts=8 noet: |