blob: 480b46a6eb13ae5467346785375030947c037089 [file] [log] [blame]
Bram Moolenaar6c391a72021-09-09 21:55:11 +02001" Vim filetype plugin file
2" Language: GNU Octave
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Doug Kearns93197fd2024-01-14 20:59:02 +01004" Last Change: 2024 Jan 14
Bram Moolenaar6c391a72021-09-09 21:55:11 +02005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14" TODO: update Matlab ftplugin and source it as the base file?
15
16setlocal comments=s:%{,m:\ ,e:%},s:#{,m:\ ,e:#},:%,:#
17setlocal commentstring=#\ %s
18setlocal formatoptions-=t formatoptions+=croql
19
20setlocal keywordprg=info\ octave\ --vi-keys\ --index-search
21
22if exists("loaded_matchit") && !exists("b:match_words")
23 let b:match_words = '\<unwind_protect\>:\<unwind_protect_cleanup\>:\<end_unwind_protect\>'
24 if exists("octave_use_matlab_end")
25 let b:match_words ..= ',' ..
26 \ '\<\%(classdef\|enumeration\|events\|for\|function\|if\|methods\|parfor\|properties\|switch\|while\|try\)\>' ..
27 \ ':' ..
28 \ '\<\%(elseif\|else\|case\|otherwise\|break\|continue\|catch\)\>' ..
29 \ ':' ..
30 \ '\<end\>'
31 else
32 let b:match_words ..= ',' ..
33 \ '\<classdef\>:\<endclassdef\>,' ..
34 \ '\<enumeration\>:\<endenumeration\>,' ..
35 \ '\<events\>:\<endevents\>,' ..
36 \ '\<do\>:\<\%(break\|continue\)\>:\<until\>' ..
37 \ '\<for\>:\<\%(break\|continue\)\>:\<endfor\>,' ..
38 \ '\<function\>:\<return\>:\<endfunction\>,' ..
39 \ '\<if\>:\<\%(elseif\|else\)\>:\<endif\>,' ..
40 \ '\<methods\>:\<endmethods\>,' ..
41 \ '\<parfor\>:\<endparfor\>,' ..
42 \ '\<properties\>:\<endproperties\>,' ..
43 \ '\<switch\>:\<\%(case\|otherwise\)\>:\<endswitch\>,' ..
44 \ '\<while\>:\<\%(break\|continue\)\>:\<endwhile\>,' ..
45 \ '\<try\>:\<catch\>:\<end_try_catch\>'
46 endif
47 " only match in statement position
48 let s:statement_start = escape('\%(\%(^\|;\)\s*\)\@<=', '\')
49 let b:match_words = substitute(b:match_words, '\\<', s:statement_start, 'g')
50endif
51
52if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Doug Kearns93197fd2024-01-14 20:59:02 +010053 let b:browsefilter = "GNU Octave Source Files (*.m)\t*.m\n"
54 if has("win32")
55 let b:browsefilter ..= "All Files (*.*)\t*\n"
56 else
57 let b:browsefilter ..= "All Files (*)\t*\n"
58 endif
Bram Moolenaar6c391a72021-09-09 21:55:11 +020059endif
60
61let b:undo_ftplugin = "setl com< cms< fo< kp< " ..
62 \ "| unlet! b:browsefilter b:match_words"
63
64let &cpo = s:cpo_save
65unlet s:cpo_save
66
67" vim: nowrap sw=2 sts=2 ts=8 noet: