blob: 6fc933797eea9a1fd49e76e9968886c8083b577a [file] [log] [blame]
Bram Moolenaar7a329912010-05-21 12:05:36 +02001" Vim indent file
2" Language: Liquid
3" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
Bram Moolenaar47c532e2022-03-19 15:18:53 +00004" Last Change: 2022 Mar 15
Bram Moolenaar7a329912010-05-21 12:05:36 +02005
6if exists('b:did_indent')
7 finish
8endif
9
10set indentexpr=
11if exists('b:liquid_subtype')
12 exe 'runtime! indent/'.b:liquid_subtype.'.vim'
13else
14 runtime! indent/html.vim
15endif
16unlet! b:did_indent
17
18if &l:indentexpr == ''
19 if &l:cindent
20 let &l:indentexpr = 'cindent(v:lnum)'
21 else
22 let &l:indentexpr = 'indent(prevnonblank(v:lnum-1))'
23 endif
24endif
25let b:liquid_subtype_indentexpr = &l:indentexpr
26
27let b:did_indent = 1
28
29setlocal indentexpr=GetLiquidIndent()
30setlocal indentkeys=o,O,*<Return>,<>>,{,},0),0],o,O,!^F,=end,=endif,=endunless,=endifchanged,=endcase,=endfor,=endtablerow,=endcapture,=else,=elsif,=when,=empty
31
Bram Moolenaar47c532e2022-03-19 15:18:53 +000032let b:undo_indent = "setl inde< indk<"
33
Bram Moolenaar7a329912010-05-21 12:05:36 +020034" Only define the function once.
35if exists('*GetLiquidIndent')
36 finish
37endif
38
Bram Moolenaar47c532e2022-03-19 15:18:53 +000039function! s:count(string, pattern) abort
Bram Moolenaar7a329912010-05-21 12:05:36 +020040 let string = substitute(a:string,'\C'.a:pattern,"\n",'g')
41 return strlen(substitute(string,"[^\n]",'','g'))
42endfunction
43
Bram Moolenaar47c532e2022-03-19 15:18:53 +000044function! GetLiquidIndent(...) abort
Bram Moolenaar7a329912010-05-21 12:05:36 +020045 if a:0 && a:1 == '.'
46 let v:lnum = line('.')
47 elseif a:0 && a:1 =~ '^\d'
48 let v:lnum = a:1
49 endif
50 let vcol = col('.')
51 call cursor(v:lnum,1)
52 exe "let ind = ".b:liquid_subtype_indentexpr
53 let lnum = prevnonblank(v:lnum-1)
54 let line = getline(lnum)
55 let cline = getline(v:lnum)
Bram Moolenaar47c532e2022-03-19 15:18:53 +000056 let line = substitute(line,'\C^\%(\s*{%-\=\s*end\w*\s*-\=%}\)\+','','')
57 let line = substitute(line,'\C\%(\s*{%-\=\s*if.\+-\=%}.\+{%-\=\s*endif\s*-\=%}\)\+','','g')
58 let line .= matchstr(cline,'\C^\%(\s*{%-\=\s*end\w*\s*-\=%}\)\+')
59 let cline = substitute(cline,'\C^\%(\s*{%-\=\s*end\w*\s*-\=%}\)\+','','')
Bram Moolenaar3ec574f2017-06-13 18:12:01 +020060 let sw = shiftwidth()
Bram Moolenaar47c532e2022-03-19 15:18:53 +000061 let ind += sw * s:count(line,'{%-\=\s*\%(if\|elsif\|else\|unless\|ifchanged\|case\|when\|for\|empty\|tablerow\|capture\)\>')
62 let ind -= sw * s:count(line,'{%-\=\s*end\%(if\|unless\|ifchanged\|case\|for\|tablerow\|capture\)\>')
63 let ind -= sw * s:count(cline,'{%-\=\s*\%(elsif\|else\|when\|empty\)\>')
64 let ind -= sw * s:count(cline,'{%-\=\s*end\w*$')
Bram Moolenaar7a329912010-05-21 12:05:36 +020065 return ind
66endfunction