pascal.vim (1718B)
1 " Vim filetype plugin file 2 " Language: Pascal 3 " Maintainer: Doug Kearns <dougkearns@gmail.com> 4 " Previous Maintainer: Dan Sharp 5 " Last Change: 2024 Jan 14 6 " 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring') 7 8 if exists("b:did_ftplugin") | finish | endif 9 let b:did_ftplugin = 1 10 11 let s:cpo_save = &cpo 12 set cpo&vim 13 14 set comments=s:(*,m:\ ,e:*),s:{,m:\ ,e:} 15 set commentstring={\ %s\ } 16 17 if exists("pascal_delphi") 18 set comments+=:/// 19 endif 20 21 if !exists("pascal_traditional") 22 set commentstring=//\ %s 23 set comments+=:// 24 endif 25 26 setlocal formatoptions-=t formatoptions+=croql 27 28 if 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\.' 38 endif 39 40 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") 41 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 47 endif 48 49 let b:undo_ftplugin = "setl fo< cms< com< " .. 50 \ "| unlet! b:browsefilter b:match_words b:match_ignorecase" 51 52 let &cpo = s:cpo_save 53 unlet s:cpo_save 54 55 " vim: nowrap sw=2 sts=2 ts=8 noet: