WIP
This commit is contained in:
parent
e0b66e89f9
commit
6d228a0a32
8 changed files with 149 additions and 0 deletions
27
modules/home/vim/queries/bp/indents.scm
Normal file
27
modules/home/vim/queries/bp/indents.scm
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
; Expressions {{{
|
||||
(list_expression) @indent.begin
|
||||
(list_expression
|
||||
"]" @indent.branch)
|
||||
|
||||
(map_expression) @indent.begin
|
||||
(map_expression
|
||||
"}" @indent.branch)
|
||||
|
||||
(select_expression) @indent.begin
|
||||
(select_expression
|
||||
")" @indent.branch)
|
||||
|
||||
(select_cases) @indent.begin
|
||||
(select_cases
|
||||
"}" @indent.branch)
|
||||
; }}}
|
||||
|
||||
; Declarations {{{
|
||||
(module) @indent.begin
|
||||
(module
|
||||
")" @indent.branch)
|
||||
(module
|
||||
"}" @indent.branch)
|
||||
; }}}
|
||||
|
||||
; vim: sw=2 foldmethod=marker
|
||||
Loading…
Add table
Add a link
Reference in a new issue