There was an error while loading. Please reload this page.
2 parents c5126b3 + 452c183 commit b9243cfCopy full SHA for b9243cf
ftplugin/elixir.vim
@@ -8,5 +8,18 @@ if (exists("b:did_ftplugin"))
8
endif
9
let b:did_ftplugin = 1
10
11
+
12
+" Matchit support
13
+if exists("loaded_matchit") && !exists("b:match_words")
14
+ let b:match_ignorecase = 0
15
16
+ let b:match_words = '\<\%(do\|fn\)\:\@!\>' .
17
+ \ ':' .
18
+ \ '\<\%(else\|elsif\|catch\|after\|rescue\)\:\@!\>' .
19
20
+ \ '\:\@<!\<end\>' .
21
+ \ ',{:},\[:\],(:)'
22
+endif
23
24
setlocal comments=:#
25
setlocal commentstring=#\ %s
0 commit comments