blob: c6aba4e388062ee803adbfd96346d613b417e8c7 [file] [log] [blame]
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +02001" Vim indent file
2" Language: Scala (http://scala-lang.org/)
3" Original Author: Stefan Matthias Aust
4" Modifications By: Derek Wyatt
5" URL: https://github.com/derekwyatt/vim-scala
6" Last Change: 2016 Aug 26
dkearns0382f052023-08-29 05:32:59 +10007" 2023 Aug 28 by Vim Project (undo_indent)
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +02008
9if exists("b:did_indent")
10 finish
11endif
12let b:did_indent = 1
13
14setlocal autoindent
15setlocal indentexpr=GetScalaIndent()
16setlocal indentkeys=0{,0},0),!^F,<>>,o,O,e,=case,<CR>
17
dkearns0382f052023-08-29 05:32:59 +100018let b:undo_indent = "setl ai< inde< indk<"
19
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +020020if exists("*GetScalaIndent")
21 finish
22endif
23let s:keepcpo= &cpo
24set cpo&vim
25
Bram Moolenaar89a9c152021-08-29 21:55:35 +020026let s:annotationMatcher = '@[A-Za-z._]\+\s\+'
27let s:modifierMatcher = s:annotationMatcher . '\|\%(private\|protected\)\%(\[[^\]]*\]\)\?\s\+\|abstract\s\+\|override\s\+\|final\s\+'
28let s:defMatcher = '\%(' . s:modifierMatcher . '\)*\<def\>'
29let s:valMatcher = '\%(' . s:modifierMatcher . '\|lazy\s\+\)*\<va[lr]\>'
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +020030let s:funcNameMatcher = '\w\+'
31let s:typeSpecMatcher = '\%(\s*\[\_[^\]]*\]\)'
32let s:defArgMatcher = '\%((\_.\{-})\)'
33let s:returnTypeMatcher = '\%(:\s*\w\+' . s:typeSpecMatcher . '\?\)'
34let g:fullDefMatcher = '^\s*' . s:defMatcher . '\s\+' . s:funcNameMatcher . '\s*' . s:typeSpecMatcher . '\?\s*' . s:defArgMatcher . '\?\s*' . s:returnTypeMatcher . '\?\s*[={]'
35
36function! scala#ConditionalConfirm(msg)
37 if 0
38 call confirm(a:msg)
39 endif
40endfunction
41
42function! scala#GetLine(lnum)
43 let line = substitute(getline(a:lnum), '//.*$', '', '')
44 let line = substitute(line, '"\(.\|\\"\)\{-}"', '""', 'g')
45 return line
46endfunction
47
48function! scala#CountBrackets(line, openBracket, closedBracket)
49 let line = substitute(a:line, '"\(.\|\\"\)\{-}"', '', 'g')
50 let open = substitute(line, '[^' . a:openBracket . ']', '', 'g')
51 let close = substitute(line, '[^' . a:closedBracket . ']', '', 'g')
52 return strlen(open) - strlen(close)
53endfunction
54
55function! scala#CountParens(line)
56 return scala#CountBrackets(a:line, '(', ')')
57endfunction
58
59function! scala#CountCurlies(line)
60 return scala#CountBrackets(a:line, '{', '}')
61endfunction
62
63function! scala#LineEndsInIncomplete(line)
64 if a:line =~ '[.,]\s*$'
65 return 1
66 else
67 return 0
68 endif
69endfunction
70
71function! scala#LineIsAClosingXML(line)
72 if a:line =~ '^\s*</\w'
73 return 1
74 else
75 return 0
76 endif
77endfunction
78
79function! scala#LineCompletesXML(lnum, line)
80 let savedpos = getpos('.')
81 call setpos('.', [savedpos[0], a:lnum, 0, savedpos[3]])
82 let tag = substitute(a:line, '^.*</\([^>]*\)>.*$', '\1', '')
83 let [lineNum, colnum] = searchpairpos('<' . tag . '>', '', '</' . tag . '>', 'Wbn')
84 call setpos('.', savedpos)
85 let pline = scala#GetLine(prevnonblank(lineNum - 1))
86 if pline =~ '=\s*$'
87 return 1
88 else
89 return 0
90 endif
91endfunction
92
93function! scala#IsParentCase()
94 let savedpos = getpos('.')
95 call setpos('.', [savedpos[0], savedpos[1], 0, savedpos[3]])
96 let [l, c] = searchpos('^\s*\%(' . s:defMatcher . '\|\%(\<case\>\)\)', 'bnW')
97 let retvalue = -1
98 if l != 0 && search('\%' . l . 'l\s*\<case\>', 'bnW')
99 let retvalue = l
100 endif
101 call setpos('.', savedpos)
102 return retvalue
103endfunction
104
105function! scala#CurlyMatcher()
106 let matchline = scala#GetLineThatMatchesBracket('{', '}')
107 if scala#CountParens(scala#GetLine(matchline)) < 0
108 let savedpos = getpos('.')
109 call setpos('.', [savedpos[0], matchline, 9999, savedpos[3]])
110 call searchpos('{', 'Wbc')
111 call searchpos(')', 'Wb')
112 let [lnum, colnum] = searchpairpos('(', '', ')', 'Wbn')
113 call setpos('.', savedpos)
114 let line = scala#GetLine(lnum)
115 if line =~ '^\s*' . s:defMatcher
116 return lnum
117 else
118 return matchline
119 endif
120 else
121 return matchline
122 endif
123endfunction
124
125function! scala#GetLineAndColumnThatMatchesCurly()
126 return scala#GetLineAndColumnThatMatchesBracket('{', '}')
127endfunction
128
129function! scala#GetLineAndColumnThatMatchesParen()
130 return scala#GetLineAndColumnThatMatchesBracket('(', ')')
131endfunction
132
133function! scala#GetLineAndColumnThatMatchesBracket(openBracket, closedBracket)
134 let savedpos = getpos('.')
135 let curline = scala#GetLine(line('.'))
136 if curline =~ a:closedBracket . '.*' . a:openBracket . '.*' . a:closedBracket
137 call setpos('.', [savedpos[0], savedpos[1], 0, savedpos[3]])
138 call searchpos(a:closedBracket . '\ze[^' . a:closedBracket . a:openBracket . ']*' . a:openBracket, 'W')
139 else
140 call setpos('.', [savedpos[0], savedpos[1], 9999, savedpos[3]])
141 call searchpos(a:closedBracket, 'Wbc')
142 endif
143 let [lnum, colnum] = searchpairpos(a:openBracket, '', a:closedBracket, 'Wbn')
144 call setpos('.', savedpos)
145 return [lnum, colnum]
146endfunction
147
148function! scala#GetLineThatMatchesCurly()
149 return scala#GetLineThatMatchesBracket('{', '}')
150endfunction
151
152function! scala#GetLineThatMatchesParen()
153 return scala#GetLineThatMatchesBracket('(', ')')
154endfunction
155
156function! scala#GetLineThatMatchesBracket(openBracket, closedBracket)
157 let [lnum, colnum] = scala#GetLineAndColumnThatMatchesBracket(a:openBracket, a:closedBracket)
158 return lnum
159endfunction
160
161function! scala#NumberOfBraceGroups(line)
162 let line = substitute(a:line, '[^()]', '', 'g')
163 if strlen(line) == 0
164 return 0
165 endif
166 let line = substitute(line, '^)*', '', 'g')
167 if strlen(line) == 0
168 return 0
169 endif
170 let line = substitute(line, '^(', '', 'g')
171 if strlen(line) == 0
172 return 0
173 endif
174 let c = 1
175 let counter = 0
176 let groupCount = 0
177 while counter < strlen(line)
178 let char = strpart(line, counter, 1)
179 if char == '('
180 let c = c + 1
181 elseif char == ')'
182 let c = c - 1
183 endif
184 if c == 0
185 let groupCount = groupCount + 1
186 endif
187 let counter = counter + 1
188 endwhile
189 return groupCount
190endfunction
191
192function! scala#MatchesIncompleteDefValr(line)
Bram Moolenaar89a9c152021-08-29 21:55:35 +0200193 if a:line =~ '^\s*\%(' . s:defMatcher . '\|' . s:valMatcher . '\).*[=({]\s*$'
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200194 return 1
195 else
196 return 0
197 endif
198endfunction
199
200function! scala#LineIsCompleteIf(line)
201 if scala#CountBrackets(a:line, '{', '}') == 0 &&
202 \ scala#CountBrackets(a:line, '(', ')') == 0 &&
203 \ a:line =~ '^\s*\<if\>\s*([^)]*)\s*\S.*$'
204 return 1
205 else
206 return 0
207 endif
208endfunction
209
210function! scala#LineCompletesIfElse(lnum, line)
211 if a:line =~ '^\s*\%(\<if\>\|\%(}\s*\)\?\<else\>\)'
212 return 0
213 endif
214 let result = search('^\%(\s*\<if\>\s*(.*).*\n\|\s*\<if\>\s*(.*)\s*\n.*\n\)\%(\s*\<else\>\s*\<if\>\s*(.*)\s*\n.*\n\)*\%(\s*\<else\>\s*\n\|\s*\<else\>[^{]*\n\)\?\%' . a:lnum . 'l', 'Wbn')
215 if result != 0 && scala#GetLine(prevnonblank(a:lnum - 1)) !~ '{\s*$'
216 return result
217 endif
218 return 0
219endfunction
220
221function! scala#GetPrevCodeLine(lnum)
222 " This needs to skip comment lines
223 return prevnonblank(a:lnum - 1)
224endfunction
225
226function! scala#InvertBracketType(openBracket, closedBracket)
227 if a:openBracket == '('
228 return [ '{', '}' ]
229 else
230 return [ '(', ')' ]
231 endif
232endfunction
233
234function! scala#Testhelper(lnum, line, openBracket, closedBracket, iteration)
235 let bracketCount = scala#CountBrackets(a:line, a:openBracket, a:closedBracket)
236 " There are more '}' braces than '{' on this line so it may be completing the function definition
237 if bracketCount < 0
238 let [matchedLNum, matchedColNum] = scala#GetLineAndColumnThatMatchesBracket(a:openBracket, a:closedBracket)
239 if matchedLNum == a:lnum
240 return -1
241 endif
242 let matchedLine = scala#GetLine(matchedLNum)
243 if ! scala#MatchesIncompleteDefValr(matchedLine)
244 let bracketLine = substitute(substitute(matchedLine, '\%' . matchedColNum . 'c.*$', '', ''), '[^{}()]', '', 'g')
245 if bracketLine =~ '}$'
246 return scala#Testhelper(matchedLNum, matchedLine, '{', '}', a:iteration + 1)
247 elseif bracketLine =~ ')$'
248 return scala#Testhelper(matchedLNum, matchedLine, '(', ')', a:iteration + 1)
249 else
250 let prevCodeLNum = scala#GetPrevCodeLine(matchedLNum)
251 if scala#MatchesIncompleteDefValr(scala#GetLine(prevCodeLNum))
252 return prevCodeLNum
253 else
254 return -1
255 endif
256 endif
257 else
258 " return indent value instead
259 return matchedLNum
260 endif
261 " There's an equal number of '{' and '}' on this line so it may be a single line function definition
262 elseif bracketCount == 0
263 if a:iteration == 0
264 let otherBracketType = scala#InvertBracketType(a:openBracket, a:closedBracket)
265 return scala#Testhelper(a:lnum, a:line, otherBracketType[0], otherBracketType[1], a:iteration + 1)
266 else
267 let prevCodeLNum = scala#GetPrevCodeLine(a:lnum)
268 let prevCodeLine = scala#GetLine(prevCodeLNum)
269 if scala#MatchesIncompleteDefValr(prevCodeLine) && prevCodeLine !~ '{\s*$'
270 return prevCodeLNum
271 else
272 let possibleIfElse = scala#LineCompletesIfElse(a:lnum, a:line)
273 if possibleIfElse != 0
274 let defValrLine = prevnonblank(possibleIfElse - 1)
275 let possibleDefValr = scala#GetLine(defValrLine)
276 if scala#MatchesIncompleteDefValr(possibleDefValr) && possibleDefValr =~ '^.*=\s*$'
277 return possibleDefValr
278 else
279 return -1
280 endif
281 else
282 return -1
283 endif
284 endif
285 endif
286 else
287 return -1
288 endif
289endfunction
290
291function! scala#Test(lnum, line, openBracket, closedBracket)
292 return scala#Testhelper(a:lnum, a:line, a:openBracket, a:closedBracket, 0)
293endfunction
294
295function! scala#LineCompletesDefValr(lnum, line)
296 let bracketCount = scala#CountBrackets(a:line, '{', '}')
297 if bracketCount < 0
298 let matchedBracket = scala#GetLineThatMatchesBracket('{', '}')
299 if ! scala#MatchesIncompleteDefValr(scala#GetLine(matchedBracket))
300 let possibleDefValr = scala#GetLine(prevnonblank(matchedBracket - 1))
301 if matchedBracket != -1 && scala#MatchesIncompleteDefValr(possibleDefValr)
302 return 1
303 else
304 return 0
305 endif
306 else
307 return 0
308 endif
309 elseif bracketCount == 0
310 let bracketCount = scala#CountBrackets(a:line, '(', ')')
311 if bracketCount < 0
312 let matchedBracket = scala#GetLineThatMatchesBracket('(', ')')
313 if ! scala#MatchesIncompleteDefValr(scala#GetLine(matchedBracket))
314 let possibleDefValr = scala#GetLine(prevnonblank(matchedBracket - 1))
315 if matchedBracket != -1 && scala#MatchesIncompleteDefValr(possibleDefValr)
316 return 1
317 else
318 return 0
319 endif
320 else
321 return 0
322 endif
323 elseif bracketCount == 0
324 let possibleDefValr = scala#GetLine(prevnonblank(a:lnum - 1))
325 if scala#MatchesIncompleteDefValr(possibleDefValr) && possibleDefValr =~ '^.*=\s*$'
326 return 1
327 else
328 let possibleIfElse = scala#LineCompletesIfElse(a:lnum, a:line)
329 if possibleIfElse != 0
330 let possibleDefValr = scala#GetLine(prevnonblank(possibleIfElse - 1))
331 if scala#MatchesIncompleteDefValr(possibleDefValr) && possibleDefValr =~ '^.*=\s*$'
332 return 2
333 else
334 return 0
335 endif
336 else
337 return 0
338 endif
339 endif
340 else
341 return 0
342 endif
343 endif
344endfunction
345
346function! scala#SpecificLineCompletesBrackets(lnum, openBracket, closedBracket)
347 let savedpos = getpos('.')
348 call setpos('.', [savedpos[0], a:lnum, 9999, savedpos[3]])
349 let retv = scala#LineCompletesBrackets(a:openBracket, a:closedBracket)
350 call setpos('.', savedpos)
351
352 return retv
353endfunction
354
355function! scala#LineCompletesBrackets(openBracket, closedBracket)
356 let savedpos = getpos('.')
357 let offline = 0
358 while offline == 0
359 let [lnum, colnum] = searchpos(a:closedBracket, 'Wb')
360 let [lnumA, colnumA] = searchpairpos(a:openBracket, '', a:closedBracket, 'Wbn')
361 if lnum != lnumA
362 let [lnumB, colnumB] = searchpairpos(a:openBracket, '', a:closedBracket, 'Wbnr')
363 let offline = 1
364 endif
365 endwhile
366 call setpos('.', savedpos)
367 if lnumA == lnumB && colnumA == colnumB
368 return lnumA
369 else
370 return -1
371 endif
372endfunction
373
374function! GetScalaIndent()
375 " Find a non-blank line above the current line.
376 let prevlnum = prevnonblank(v:lnum - 1)
377
378 " Hit the start of the file, use zero indent.
379 if prevlnum == 0
380 return 0
381 endif
382
383 let ind = indent(prevlnum)
384 let originalIndentValue = ind
385 let prevline = scala#GetLine(prevlnum)
386 let curlnum = v:lnum
387 let curline = scala#GetLine(curlnum)
388 if get(g:, 'scala_scaladoc_indent', 0)
389 let star_indent = 2
390 else
391 let star_indent = 1
392 end
393
394 if prevline =~ '^\s*/\*\*'
395 if prevline =~ '\*/\s*$'
396 return ind
397 else
398 return ind + star_indent
399 endif
400 endif
401
402 if curline =~ '^\s*\*'
403 return cindent(curlnum)
404 endif
405
406 " If this line starts with a { then make it indent the same as the previous line
407 if curline =~ '^\s*{'
408 call scala#ConditionalConfirm("1")
409 " Unless, of course, the previous one is a { as well
410 if prevline !~ '^\s*{'
411 call scala#ConditionalConfirm("2")
412 return indent(prevlnum)
413 endif
414 endif
415
416 " '.' continuations
417 if curline =~ '^\s*\.'
418 if prevline =~ '^\s*\.'
419 return ind
420 else
Bram Moolenaar036986f2017-03-16 17:41:02 +0100421 return ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200422 endif
423 endif
424
425 " Indent html literals
426 if prevline !~ '/>\s*$' && prevline =~ '^\s*<[a-zA-Z][^>]*>\s*$'
427 call scala#ConditionalConfirm("3")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100428 return ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200429 endif
430
431 " assumes curly braces around try-block
432 if curline =~ '^\s*}\s*\<catch\>'
Bram Moolenaar036986f2017-03-16 17:41:02 +0100433 return ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200434 elseif curline =~ '^\s*\<catch\>'
435 return ind
436 endif
437
Bram Moolenaar036986f2017-03-16 17:41:02 +0100438 " Add a shiftwidth()' after lines that start a block
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200439 " If 'if', 'for' or 'while' end with ), this is a one-line block
440 " If 'val', 'var', 'def' end with =, this is a one-line block
441 if (prevline =~ '^\s*\<\%(\%(}\?\s*else\s\+\)\?if\|for\|while\)\>.*[)=]\s*$' && scala#NumberOfBraceGroups(prevline) <= 1)
442 \ || prevline =~ '^\s*' . s:defMatcher . '.*=\s*$'
Bram Moolenaar89a9c152021-08-29 21:55:35 +0200443 \ || prevline =~ '^\s*' . s:valMatcher . '.*[=]\s*$'
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200444 \ || prevline =~ '^\s*\%(}\s*\)\?\<else\>\s*$'
445 \ || prevline =~ '=\s*$'
446 call scala#ConditionalConfirm("4")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100447 let ind = ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200448 elseif prevline =~ '^\s*\<\%(}\?\s*else\s\+\)\?if\>' && curline =~ '^\s*}\?\s*\<else\>'
449 return ind
450 endif
451
452 let lineCompletedBrackets = 0
453 let bracketCount = scala#CountBrackets(prevline, '{', '}')
454 if bracketCount > 0 || prevline =~ '.*{\s*$'
455 call scala#ConditionalConfirm("5b")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100456 let ind = ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200457 elseif bracketCount < 0
458 call scala#ConditionalConfirm("6b")
459 " if the closing brace actually completes the braces entirely, then we
460 " have to indent to line that started the whole thing
461 let completeLine = scala#LineCompletesBrackets('{', '}')
462 if completeLine != -1
463 call scala#ConditionalConfirm("8b")
464 let prevCompleteLine = scala#GetLine(prevnonblank(completeLine - 1))
465 " However, what actually started this part looks like it was a function
466 " definition, so we need to indent to that line instead. This is
467 " actually pretty weak at the moment.
468 if prevCompleteLine =~ '=\s*$'
469 call scala#ConditionalConfirm("9b")
470 let ind = indent(prevnonblank(completeLine - 1))
471 else
472 call scala#ConditionalConfirm("10b")
473 let ind = indent(completeLine)
474 endif
475 else
476 let lineCompletedBrackets = 1
477 endif
478 endif
479
480 if ind == originalIndentValue
481 let bracketCount = scala#CountBrackets(prevline, '(', ')')
482 if bracketCount > 0 || prevline =~ '.*(\s*$'
483 call scala#ConditionalConfirm("5a")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100484 let ind = ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200485 elseif bracketCount < 0
486 call scala#ConditionalConfirm("6a")
487 " if the closing brace actually completes the braces entirely, then we
488 " have to indent to line that started the whole thing
489 let completeLine = scala#LineCompletesBrackets('(', ')')
490 if completeLine != -1 && prevline !~ '^.*{\s*$'
491 call scala#ConditionalConfirm("8a")
492 let prevCompleteLine = scala#GetLine(prevnonblank(completeLine - 1))
493 " However, what actually started this part looks like it was a function
494 " definition, so we need to indent to that line instead. This is
495 " actually pretty weak at the moment.
496 if prevCompleteLine =~ '=\s*$'
497 call scala#ConditionalConfirm("9a")
498 let ind = indent(prevnonblank(completeLine - 1))
499 else
500 call scala#ConditionalConfirm("10a")
501 let ind = indent(completeLine)
502 endif
503 else
504 " This is the only part that's different from from the '{', '}' one below
505 " Yup... some refactoring is necessary at some point.
Bram Moolenaar036986f2017-03-16 17:41:02 +0100506 let ind = ind + (bracketCount * shiftwidth())
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200507 let lineCompletedBrackets = 1
508 endif
509 endif
510 endif
511
512 if curline =~ '^\s*}\?\s*\<else\>\%(\s\+\<if\>\s*(.*)\)\?\s*{\?\s*$' &&
513 \ ! scala#LineIsCompleteIf(prevline) &&
514 \ prevline !~ '^.*}\s*$'
Bram Moolenaar036986f2017-03-16 17:41:02 +0100515 let ind = ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200516 endif
517
Bram Moolenaar036986f2017-03-16 17:41:02 +0100518 " Subtract a shiftwidth()' on '}' or html
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200519 let curCurlyCount = scala#CountCurlies(curline)
520 if curCurlyCount < 0
521 call scala#ConditionalConfirm("14a")
522 let matchline = scala#CurlyMatcher()
523 return indent(matchline)
524 elseif curline =~ '^\s*</[a-zA-Z][^>]*>'
525 call scala#ConditionalConfirm("14c")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100526 return ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200527 endif
528
529 let prevParenCount = scala#CountParens(prevline)
530 if prevline =~ '^\s*\<for\>.*$' && prevParenCount > 0
531 call scala#ConditionalConfirm("15")
532 let ind = indent(prevlnum) + 5
533 endif
534
535 let prevCurlyCount = scala#CountCurlies(prevline)
536 if prevCurlyCount == 0 && prevline =~ '^.*\%(=>\|⇒\)\s*$' && prevline !~ '^\s*this\s*:.*\%(=>\|⇒\)\s*$' && curline !~ '^\s*\<case\>'
537 call scala#ConditionalConfirm("16")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100538 let ind = ind + shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200539 endif
540
541 if ind == originalIndentValue && curline =~ '^\s*\<case\>'
542 call scala#ConditionalConfirm("17")
543 let parentCase = scala#IsParentCase()
544 if parentCase != -1
545 call scala#ConditionalConfirm("17a")
546 return indent(parentCase)
547 endif
548 endif
549
550 if prevline =~ '^\s*\*/'
551 \ || prevline =~ '*/\s*$'
552 call scala#ConditionalConfirm("18")
553 let ind = ind - star_indent
554 endif
555
556 if scala#LineEndsInIncomplete(prevline)
557 call scala#ConditionalConfirm("19")
558 return ind
559 endif
560
561 if scala#LineIsAClosingXML(prevline)
562 if scala#LineCompletesXML(prevlnum, prevline)
563 call scala#ConditionalConfirm("20a")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100564 return ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200565 else
566 call scala#ConditionalConfirm("20b")
567 return ind
568 endif
569 endif
570
571 if ind == originalIndentValue
572 "let indentMultiplier = scala#LineCompletesDefValr(prevlnum, prevline)
573 "if indentMultiplier != 0
574 " call scala#ConditionalConfirm("19a")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100575 " let ind = ind - (indentMultiplier * shiftwidth())
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200576 let defValrLine = scala#Test(prevlnum, prevline, '{', '}')
577 if defValrLine != -1
578 call scala#ConditionalConfirm("21a")
579 let ind = indent(defValrLine)
580 elseif lineCompletedBrackets == 0
581 call scala#ConditionalConfirm("21b")
582 if scala#GetLine(prevnonblank(prevlnum - 1)) =~ '^.*\<else\>\s*\%(//.*\)\?$'
583 call scala#ConditionalConfirm("21c")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100584 let ind = ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200585 elseif scala#LineCompletesIfElse(prevlnum, prevline)
586 call scala#ConditionalConfirm("21d")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100587 let ind = ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200588 elseif scala#CountParens(curline) < 0 && curline =~ '^\s*)' && scala#GetLine(scala#GetLineThatMatchesBracket('(', ')')) =~ '.*(\s*$'
589 " Handles situations that look like this:
590 "
591 " val a = func(
592 " 10
593 " )
594 "
595 " or
596 "
597 " val a = func(
598 " 10
599 " ).somethingHere()
600 call scala#ConditionalConfirm("21e")
Bram Moolenaar036986f2017-03-16 17:41:02 +0100601 let ind = ind - shiftwidth()
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200602 endif
603 endif
604 endif
605
606 call scala#ConditionalConfirm("returning " . ind)
607
608 return ind
609endfunction
610
611let &cpo = s:keepcpo
612unlet s:keepcpo
613
614" vim:set sw=2 sts=2 ts=8 et:
615" vim600:fdm=marker fdl=1 fdc=0: