annotate runtime/ftplugin/elixir.vim @ 34872:d8c90ada53f5

Added tag v9.1.0302 for changeset 23dc393eadc70893fb2ba0a451f3ae85eed0d945
author Christian Brabandt <cb@256bit.org>
date Wed, 10 Apr 2024 22:45:03 +0200
parents 9552a4f3d0b5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Elixir filetype plugin
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Elixir
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com>
34030
9552a4f3d0b5 runtime(elixir): missing undo_ftplugin for indentkeys
Christian Brabandt <cb@256bit.org>
parents: 34024
diff changeset
4 " Last Change: 2023 Dec 27
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_ftplugin")
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_ftplugin = 1
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
29756
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
11 let s:save_cpo = &cpo
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
12 set cpo&vim
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
13
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
14 " Matchit support
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
15 if exists('loaded_matchit') && !exists('b:match_words')
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
16 let b:match_ignorecase = 0
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
17
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
18 let b:match_words = '\:\@<!\<\%(do\|fn\)\:\@!\>' .
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
19 \ ':' .
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
20 \ '\<\%(else\|catch\|after\|rescue\)\:\@!\>' .
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
21 \ ':' .
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
22 \ '\:\@<!\<end\>' .
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
23 \ ',{:},\[:\],(:)'
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
24 endif
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
25
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29756
diff changeset
26 setlocal shiftwidth=2 softtabstop=2 expandtab iskeyword+=!,?
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29756
diff changeset
27 setlocal comments=:#
28620
4d76b3e07c07 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 setlocal commentstring=#\ %s
29756
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
29
34024
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
30 setlocal indentkeys=0#,!^F,o,O
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
31 " Enable keys for blocks
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
32 setlocal indentkeys+=0=after,0=catch,0=do,0=else,0=end,0=rescue
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
33 " Enable keys that are usually the first keys in a line
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
34 setlocal indentkeys+=0->,0\|>,0},0],0),>
5491229840a3 runtime(elixir): fix indentation (#13771)
Christian Brabandt <cb@256bit.org>
parents: 30547
diff changeset
35
34030
9552a4f3d0b5 runtime(elixir): missing undo_ftplugin for indentkeys
Christian Brabandt <cb@256bit.org>
parents: 34024
diff changeset
36 let b:undo_ftplugin = 'setlocal sw< sts< et< isk< com< cms< indk<'
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29756
diff changeset
37
29756
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
38 let &cpo = s:save_cpo
2acb87ee55fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
39 unlet s:save_cpo