28620
|
1 " Elixir filetype plugin
|
|
2 " Language: Elixir
|
|
3 " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com>
|
30547
|
4 " Last Change: 2022 Sep 20
|
28620
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
29756
|
11 let s:save_cpo = &cpo
|
|
12 set cpo&vim
|
|
13
|
|
14 " Matchit support
|
|
15 if exists('loaded_matchit') && !exists('b:match_words')
|
|
16 let b:match_ignorecase = 0
|
|
17
|
|
18 let b:match_words = '\:\@<!\<\%(do\|fn\)\:\@!\>' .
|
|
19 \ ':' .
|
|
20 \ '\<\%(else\|catch\|after\|rescue\)\:\@!\>' .
|
|
21 \ ':' .
|
|
22 \ '\:\@<!\<end\>' .
|
|
23 \ ',{:},\[:\],(:)'
|
|
24 endif
|
|
25
|
30547
|
26 setlocal shiftwidth=2 softtabstop=2 expandtab iskeyword+=!,?
|
|
27 setlocal comments=:#
|
28620
|
28 setlocal commentstring=#\ %s
|
29756
|
29
|
30547
|
30 let b:undo_ftplugin = 'setlocal sw< sts< et< isk< com< cms<'
|
|
31
|
29756
|
32 let &cpo = s:save_cpo
|
|
33 unlet s:save_cpo
|