blob: 7762875db93c8b5f9010a305a928df135595ab4e [file] [log] [blame]
Bram Moolenaar56994d22021-04-17 16:31:09 +02001" Vim filetype plugin file
2" Language: Modula-3 Quake
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +01004" Last Change: 2022 June 12
Bram Moolenaar56994d22021-04-17 16:31:09 +02005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal comments=s1:/*,mb:*,ex:*/,:%
15setlocal commentstring=%\ %s
16setlocal formatoptions-=t formatoptions+=croql
17
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010018let b:undo_ftplugin = "setl fo< com< cms<"
19
Bram Moolenaar56994d22021-04-17 16:31:09 +020020if exists("loaded_matchit") && !exists("b:match_words")
21 let b:match_words = '\<\%(proc\|if\|foreach\)\>:\<else\>:\<end\>'
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010022 let b:undo_ftplugin ..= " | unlet! b:match_words"
Bram Moolenaar56994d22021-04-17 16:31:09 +020023endif
24
25if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
26 let b:browsefilter = "Modula-3 Quake Source Files (*.quake)\t*.quake\n" ..
27 \ "All Files (*.*)\t*.*\n"
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010028 let b:m3quake_set_browsefilter = 1
29 let b:undo_ftplugin ..= " | unlet! b:browsefilter b:m3quake_set_browsefilter"
Bram Moolenaar56994d22021-04-17 16:31:09 +020030endif
31
Bram Moolenaar56994d22021-04-17 16:31:09 +020032let &cpo = s:cpo_save
33unlet s:cpo_save
34
35" vim: nowrap sw=2 sts=2 ts=8 noet: