comparison runtime/ftplugin/modula2.vim @ 24468:9f41bfdbc6fc

Update runtime files. Commit: https://github.com/vim/vim/commit/56994d215815139207f3c5ce02a1720e44e93c09 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 17 16:31:09 2021 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Apr 2021 16:45:04 +0200
parents
children ff27442e7851
comparison
equal deleted inserted replaced
24467:6515dbde026a 24468:9f41bfdbc6fc
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: