blob: b0c0a3916a40d47fb1a00509a94d6af3b8180671 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim indent file
2" Language: Vim script
3" Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar1ff14ba2019-11-02 14:09:23 +01004" Last Change: 2019 Oct 31
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6" Only load this indent file when no other was loaded.
7if exists("b:did_indent")
8 finish
9endif
10let b:did_indent = 1
11
12setlocal indentexpr=GetVimIndent()
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010013setlocal indentkeys+==end,=},=else,=cat,=fina,=END,0\\,0=\"\\\
Bram Moolenaar071d4272004-06-13 20:20:40 +000014
Bram Moolenaarc8734422012-06-01 22:38:45 +020015let b:undo_indent = "setl indentkeys< indentexpr<"
16
Bram Moolenaar071d4272004-06-13 20:20:40 +000017" Only define the function once.
18if exists("*GetVimIndent")
19 finish
20endif
Bram Moolenaar8e52a592012-05-18 21:49:28 +020021let s:keepcpo= &cpo
22set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000023
24function GetVimIndent()
Bram Moolenaar9b451252012-08-15 17:43:31 +020025 let ignorecase_save = &ignorecase
26 try
27 let &ignorecase = 0
28 return GetVimIndentIntern()
29 finally
30 let &ignorecase = ignorecase_save
31 endtry
32endfunc
33
Bram Moolenaar67f8ab82018-09-11 22:37:29 +020034let s:lineContPat = '^\s*\(\\\|"\\ \)'
35
Bram Moolenaar9b451252012-08-15 17:43:31 +020036function GetVimIndentIntern()
Bram Moolenaar071d4272004-06-13 20:20:40 +000037 " Find a non-blank line above the current line.
38 let lnum = prevnonblank(v:lnum - 1)
39
Bram Moolenaar67f8ab82018-09-11 22:37:29 +020040 " If the current line doesn't start with '\' or '"\ ' and below a line that
41 " starts with '\' or '"\ ', use the indent of the line above it.
Bram Moolenaar91e15e12014-09-19 22:38:48 +020042 let cur_text = getline(v:lnum)
Bram Moolenaar67f8ab82018-09-11 22:37:29 +020043 if cur_text !~ s:lineContPat
44 while lnum > 0 && getline(lnum) =~ s:lineContPat
Bram Moolenaar071d4272004-06-13 20:20:40 +000045 let lnum = lnum - 1
46 endwhile
47 endif
48
49 " At the start of the file use zero indent.
50 if lnum == 0
51 return 0
52 endif
Bram Moolenaar91e15e12014-09-19 22:38:48 +020053 let prev_text = getline(lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
55 " Add a 'shiftwidth' after :if, :while, :try, :catch, :finally, :function
Bram Moolenaar67f8ab82018-09-11 22:37:29 +020056 " and :else. Add it three times for a line that starts with '\' or '"\ '
57 " after a line that doesn't (or g:vim_indent_cont if it exists).
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 let ind = indent(lnum)
Bram Moolenaar1ff14ba2019-11-02 14:09:23 +010059
60 " In heredoc indenting works completely differently.
61 if has('syntax_items')
62 let syn_here = synIDattr(synID(v:lnum, 1, 1), "name")
63 if syn_here =~ 'vimLetHereDocStop'
64 " End of heredoc: use indent of matching start line
65 let lnum = v:lnum - 1
66 while lnum > 0
67 if synIDattr(synID(lnum, 1, 1), "name") !~ 'vimLetHereDoc'
68 return indent(lnum)
69 endif
70 let lnum -= 1
71 endwhile
72 return 0
73 endif
74 if syn_here =~ 'vimLetHereDoc'
75 if synIDattr(synID(lnum, 1, 1), "name") !~ 'vimLetHereDoc'
76 " First line in heredoc: increase indent
77 return ind + shiftwidth()
78 endif
79 " Heredoc continues: no change in indent
80 return ind
81 endif
82 endif
83
Bram Moolenaar67f8ab82018-09-11 22:37:29 +020084 if cur_text =~ s:lineContPat && v:lnum > 1 && prev_text !~ s:lineContPat
Bram Moolenaard4755bb2004-09-02 19:12:26 +000085 if exists("g:vim_indent_cont")
86 let ind = ind + g:vim_indent_cont
87 else
Bram Moolenaar705ada12016-01-24 17:56:50 +010088 let ind = ind + shiftwidth() * 3
Bram Moolenaard4755bb2004-09-02 19:12:26 +000089 endif
Bram Moolenaare18dbe82016-07-02 21:42:23 +020090 elseif prev_text =~ '^\s*aug\%[roup]\s\+' && prev_text !~ '^\s*aug\%[roup]\s\+[eE][nN][dD]\>'
Bram Moolenaar705ada12016-01-24 17:56:50 +010091 let ind = ind + shiftwidth()
Bram Moolenaarcab49df2011-03-22 17:40:10 +010092 else
Bram Moolenaar91e15e12014-09-19 22:38:48 +020093 " A line starting with :au does not increment/decrement indent.
94 if prev_text !~ '^\s*au\%[tocmd]'
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010095 let i = match(prev_text, '\(^\||\)\s*\({\|\(if\|wh\%[ile]\|for\|try\|cat\%[ch]\|fina\%[lly]\|fu\%[nction]\|def\|el\%[seif]\)\>\)')
Bram Moolenaar91e15e12014-09-19 22:38:48 +020096 if i >= 0
Bram Moolenaar705ada12016-01-24 17:56:50 +010097 let ind += shiftwidth()
Bram Moolenaar91e15e12014-09-19 22:38:48 +020098 if strpart(prev_text, i, 1) == '|' && has('syntax_items')
99 \ && synIDattr(synID(lnum, i, 1), "name") =~ '\(Comment\|String\)$'
Bram Moolenaar705ada12016-01-24 17:56:50 +0100100 let ind -= shiftwidth()
Bram Moolenaar91e15e12014-09-19 22:38:48 +0200101 endif
Bram Moolenaarcab49df2011-03-22 17:40:10 +0100102 endif
103 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 endif
105
106 " If the previous line contains an "end" after a pipe, but not in an ":au"
Bram Moolenaar520470a2005-06-16 21:59:56 +0000107 " command. And not when there is a backslash before the pipe.
Bram Moolenaardc27ac12005-07-06 22:35:45 +0000108 " And when syntax HL is enabled avoid a match inside a string.
Bram Moolenaar91e15e12014-09-19 22:38:48 +0200109 let i = match(prev_text, '[^\\]|\s*\(ene\@!\)')
110 if i > 0 && prev_text !~ '^\s*au\%[tocmd]'
Bram Moolenaardc27ac12005-07-06 22:35:45 +0000111 if !has('syntax_items') || synIDattr(synID(lnum, i + 2, 1), "name") !~ '\(Comment\|String\)$'
Bram Moolenaar705ada12016-01-24 17:56:50 +0100112 let ind = ind - shiftwidth()
Bram Moolenaardc27ac12005-07-06 22:35:45 +0000113 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114 endif
115
116
117 " Subtract a 'shiftwidth' on a :endif, :endwhile, :catch, :finally, :endtry,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100118 " :endfun, :enddef, :else and :augroup END.
119 if cur_text =~ '^\s*\(ene\@!\|}\|cat\|fina\|el\|aug\%[roup]\s\+[eE][nN][dD]\)'
Bram Moolenaar705ada12016-01-24 17:56:50 +0100120 let ind = ind - shiftwidth()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 endif
122
123 return ind
124endfunction
125
Bram Moolenaar8e52a592012-05-18 21:49:28 +0200126let &cpo = s:keepcpo
127unlet s:keepcpo
128
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129" vim:sw=2