blob: 7c800c4fbde1f4e53e68f65b4e376186e2dc62b6 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim filetype plugin file
Bram Moolenaar4c295022021-05-02 17:19:11 +02002" Language: Pascal
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Bram Moolenaar1588bc82022-03-08 21:35:07 +00004" Previous Maintainer: Dan Sharp
Doug Kearns93197fd2024-01-14 20:59:02 +01005" Last Change: 2024 Jan 14
Riley Bruins0a083062024-06-03 20:40:45 +02006" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
8if exists("b:did_ftplugin") | finish | endif
9let b:did_ftplugin = 1
10
Bram Moolenaar4c295022021-05-02 17:19:11 +020011let s:cpo_save = &cpo
12set cpo&vim
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +020013
Bram Moolenaar4c295022021-05-02 17:19:11 +020014set comments=s:(*,m:\ ,e:*),s:{,m:\ ,e:}
Riley Bruins0a083062024-06-03 20:40:45 +020015set commentstring={\ %s\ }
Bram Moolenaar4c295022021-05-02 17:19:11 +020016
17if exists("pascal_delphi")
18 set comments+=:///
Bram Moolenaar071d4272004-06-13 20:20:40 +000019endif
20
Bram Moolenaar4c295022021-05-02 17:19:11 +020021if !exists("pascal_traditional")
22 set commentstring=//\ %s
23 set comments+=://
24endif
25
26setlocal formatoptions-=t formatoptions+=croql
27
28if exists("loaded_matchit")
29 let b:match_ignorecase = 1 " (Pascal is case-insensitive)
30
31 let b:match_words = '\<\%(asm\|begin\|case\|\%(\%(=\|packed\)\s*\)\@<=\%(class\|object\)\|\%(=\s*\)\@<=interface\|record\|try\)\>'
32 let b:match_words .= ':\%(^\s*\)\@<=\%(except\|finally\|else\|otherwise\)\>'
33 let b:match_words .= ':\<end\>\.\@!'
34
35 let b:match_words .= ',\<repeat\>:\<until\>'
36 " let b:match_words .= ',\<if\>:\<else\>' " FIXME - else clashing with middle else. It seems like a debatable use anyway.
37 let b:match_words .= ',\<unit\>:\<\%(\%(^\s*\)\@<=interface\|implementation\|initialization\|finalization\)\>:\<end\.'
38endif
39
40if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Doug Kearns93197fd2024-01-14 20:59:02 +010041 let b:browsefilter = "Pascal Source Files (*.pas, *.pp, *.inc)\t*.pas;*.pp;*.inc\n"
42 if has("win32")
43 let b:browsefilter ..= "All Files (*.*)\t*\n"
44 else
45 let b:browsefilter ..= "All Files (*)\t*\n"
46 endif
Bram Moolenaar4c295022021-05-02 17:19:11 +020047endif
48
49let b:undo_ftplugin = "setl fo< cms< com< " ..
50 \ "| unlet! b:browsefilter b:match_words b:match_ignorecase"
51
52let &cpo = s:cpo_save
53unlet s:cpo_save
54
55" vim: nowrap sw=2 sts=2 ts=8 noet: