blob: 4f87ec782316c3071a8812e29a3d81af0e0ca703 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim indent file
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00002" Language: Ruby
3" Maintainer: Nikolai Weibull <now at bitwi.se>
Bram Moolenaarec7944a2013-06-12 21:29:15 +02004" URL: https://github.com/vim-ruby/vim-ruby
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00005" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
Bram Moolenaar60a795a2005-09-16 21:55:43 +00006
7" 0. Initialization {{{1
8" =================
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10" Only load this indent file when no other was loaded.
11if exists("b:did_indent")
12 finish
13endif
14let b:did_indent = 1
15
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020016if !exists('g:ruby_indent_access_modifier_style')
17 " Possible values: "normal", "indent", "outdent"
18 let g:ruby_indent_access_modifier_style = 'normal'
19endif
20
21if !exists('g:ruby_indent_block_style')
22 " Possible values: "expression", "do"
23 let g:ruby_indent_block_style = 'expression'
24endif
25
Bram Moolenaar551dbcc2006-04-25 22:13:59 +000026setlocal nosmartindent
27
Bram Moolenaar60a795a2005-09-16 21:55:43 +000028" Now, set up our indentation expression and keys that trigger it.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020029setlocal indentexpr=GetRubyIndent(v:lnum)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020030setlocal indentkeys=0{,0},0),0],!^F,o,O,e,:,.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020031setlocal indentkeys+==end,=else,=elsif,=when,=ensure,=rescue,==begin,==end
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020032setlocal indentkeys+==private,=protected,=public
Bram Moolenaar071d4272004-06-13 20:20:40 +000033
34" Only define the function once.
35if exists("*GetRubyIndent")
36 finish
37endif
38
Bram Moolenaar60a795a2005-09-16 21:55:43 +000039let s:cpo_save = &cpo
40set cpo&vim
41
42" 1. Variables {{{1
43" ============
44
Bram Moolenaarec7944a2013-06-12 21:29:15 +020045" Regex of syntax group names that are or delimit strings/symbols or are comments.
46let s:syng_strcom = '\<ruby\%(Regexp\|RegexpDelimiter\|RegexpEscape' .
47 \ '\|Symbol\|String\|StringDelimiter\|StringEscape\|ASCIICode' .
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020048 \ '\|Interpolation\|InterpolationDelimiter\|NoInterpolation\|Comment\|Documentation\)\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000049
Bram Moolenaar60a795a2005-09-16 21:55:43 +000050" Regex of syntax group names that are strings.
51let s:syng_string =
Bram Moolenaarc236c162008-07-13 17:41:49 +000052 \ '\<ruby\%(String\|Interpolation\|NoInterpolation\|StringEscape\)\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000053
54" Regex of syntax group names that are strings or documentation.
55let s:syng_stringdoc =
Bram Moolenaarec7944a2013-06-12 21:29:15 +020056 \'\<ruby\%(String\|Interpolation\|NoInterpolation\|StringEscape\|Documentation\)\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000057
58" Expression used to check whether we should skip a match with searchpair().
59let s:skip_expr =
Bram Moolenaarc236c162008-07-13 17:41:49 +000060 \ "synIDattr(synID(line('.'),col('.'),1),'name') =~ '".s:syng_strcom."'"
Bram Moolenaar60a795a2005-09-16 21:55:43 +000061
62" Regex used for words that, at the start of a line, add a level of indent.
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020063let s:ruby_indent_keywords =
64 \ '^\s*\zs\<\%(module\|class\|if\|for' .
65 \ '\|while\|until\|else\|elsif\|case\|when\|unless\|begin\|ensure\|rescue' .
66 \ '\|\%(public\|protected\|private\)\=\s*def\):\@!\>' .
Bram Moolenaarec7944a2013-06-12 21:29:15 +020067 \ '\|\%([=,*/%+-]\|<<\|>>\|:\s\)\s*\zs' .
68 \ '\<\%(if\|for\|while\|until\|case\|unless\|begin\):\@!\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000069
70" Regex used for words that, at the start of a line, remove a level of indent.
71let s:ruby_deindent_keywords =
Bram Moolenaarec7944a2013-06-12 21:29:15 +020072 \ '^\s*\zs\<\%(ensure\|else\|rescue\|elsif\|when\|end\):\@!\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000073
74" Regex that defines the start-match for the 'end' keyword.
75"let s:end_start_regex = '\%(^\|[^.]\)\<\%(module\|class\|def\|if\|for\|while\|until\|case\|unless\|begin\|do\)\>'
76" TODO: the do here should be restricted somewhat (only at end of line)?
Bram Moolenaarec7944a2013-06-12 21:29:15 +020077let s:end_start_regex =
78 \ '\C\%(^\s*\|[=,*/%+\-|;{]\|<<\|>>\|:\s\)\s*\zs' .
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020079 \ '\<\%(module\|class\|if\|for\|while\|until\|case\|unless\|begin' .
80 \ '\|\%(public\|protected\|private\)\=\s*def\):\@!\>' .
Bram Moolenaarec7944a2013-06-12 21:29:15 +020081 \ '\|\%(^\|[^.:@$]\)\@<=\<do:\@!\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000082
83" Regex that defines the middle-match for the 'end' keyword.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020084let s:end_middle_regex = '\<\%(ensure\|else\|\%(\%(^\|;\)\s*\)\@<=\<rescue:\@!\>\|when\|elsif\):\@!\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000085
86" Regex that defines the end-match for the 'end' keyword.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020087let s:end_end_regex = '\%(^\|[^.:@$]\)\@<=\<end:\@!\>'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000088
89" Expression used for searchpair() call for finding match for 'end' keyword.
90let s:end_skip_expr = s:skip_expr .
91 \ ' || (expand("<cword>") == "do"' .
Bram Moolenaarec7944a2013-06-12 21:29:15 +020092 \ ' && getline(".") =~ "^\\s*\\<\\(while\\|until\\|for\\):\\@!\\>")'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000093
94" Regex that defines continuation lines, not including (, {, or [.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020095let s:non_bracket_continuation_regex = '\%([\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$'
Bram Moolenaar60a795a2005-09-16 21:55:43 +000096
97" Regex that defines continuation lines.
Bram Moolenaarec7944a2013-06-12 21:29:15 +020098let s:continuation_regex =
99 \ '\%(%\@<![({[\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$'
100
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200101" Regex that defines continuable keywords
102let s:continuable_regex =
103 \ '\C\%(^\s*\|[=,*/%+\-|;{]\|<<\|>>\|:\s\)\s*\zs' .
104 \ '\<\%(if\|for\|while\|until\|unless\):\@!\>'
105
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200106" Regex that defines bracket continuations
107let s:bracket_continuation_regex = '%\@<!\%([({[]\)\s*\%(#.*\)\=$'
108
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200109" Regex that defines dot continuations
110let s:dot_continuation_regex = '%\@<!\.\s*\%(#.*\)\=$'
111
112" Regex that defines backslash continuations
113let s:backslash_continuation_regex = '%\@<!\\\s*$'
114
115" Regex that defines end of bracket continuation followed by another continuation
116let s:bracket_switch_continuation_regex = '^\([^(]\+\zs).\+\)\+'.s:continuation_regex
117
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200118" Regex that defines the first part of a splat pattern
119let s:splat_regex = '[[,(]\s*\*\s*\%(#.*\)\=$'
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000120
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200121" Regex that describes all indent access modifiers
122let s:access_modifier_regex = '\C^\s*\%(public\|protected\|private\)\s*\%(#.*\)\=$'
123
124" Regex that describes the indent access modifiers (excludes public)
125let s:indent_access_modifier_regex = '\C^\s*\%(protected\|private\)\s*\%(#.*\)\=$'
126
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000127" Regex that defines blocks.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200128"
129" Note that there's a slight problem with this regex and s:continuation_regex.
130" Code like this will be matched by both:
131"
132" method_call do |(a, b)|
133"
134" The reason is that the pipe matches a hanging "|" operator.
135"
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000136let s:block_regex =
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200137 \ '\%(\<do:\@!\>\|%\@<!{\)\s*\%(|[^|]*|\)\=\s*\%(#.*\)\=$'
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200138
139let s:block_continuation_regex = '^\s*[^])}\t ].*'.s:block_regex
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000140
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200141" Regex that describes a leading operator (only a method call's dot for now)
142let s:leading_operator_regex = '^\s*[.]'
143
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000144" 2. Auxiliary Functions {{{1
145" ======================
146
147" Check if the character at lnum:col is inside a string, comment, or is ascii.
148function s:IsInStringOrComment(lnum, col)
Bram Moolenaarc236c162008-07-13 17:41:49 +0000149 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_strcom
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000150endfunction
151
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000152" Check if the character at lnum:col is inside a string.
153function s:IsInString(lnum, col)
Bram Moolenaarc236c162008-07-13 17:41:49 +0000154 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_string
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000155endfunction
156
157" Check if the character at lnum:col is inside a string or documentation.
158function s:IsInStringOrDocumentation(lnum, col)
Bram Moolenaarc236c162008-07-13 17:41:49 +0000159 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_stringdoc
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000160endfunction
161
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200162" Check if the character at lnum:col is inside a string delimiter
163function s:IsInStringDelimiter(lnum, col)
164 return synIDattr(synID(a:lnum, a:col, 1), 'name') == 'rubyStringDelimiter'
165endfunction
166
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000167" Find line above 'lnum' that isn't empty, in a comment, or in a string.
168function s:PrevNonBlankNonString(lnum)
169 let in_block = 0
170 let lnum = prevnonblank(a:lnum)
171 while lnum > 0
172 " Go in and out of blocks comments as necessary.
173 " If the line isn't empty (with opt. comment) or in a string, end search.
174 let line = getline(lnum)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200175 if line =~ '^=begin'
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000176 if in_block
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200177 let in_block = 0
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000178 else
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200179 break
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000180 endif
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200181 elseif !in_block && line =~ '^=end'
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000182 let in_block = 1
183 elseif !in_block && line !~ '^\s*#.*$' && !(s:IsInStringOrComment(lnum, 1)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200184 \ && s:IsInStringOrComment(lnum, strlen(line)))
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000185 break
186 endif
187 let lnum = prevnonblank(lnum - 1)
188 endwhile
189 return lnum
190endfunction
191
192" Find line above 'lnum' that started the continuation 'lnum' may be part of.
193function s:GetMSL(lnum)
194 " Start on the line we're at and use its indent.
195 let msl = a:lnum
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200196 let msl_body = getline(msl)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000197 let lnum = s:PrevNonBlankNonString(a:lnum - 1)
198 while lnum > 0
199 " If we have a continuation line, or we're in a string, use line as MSL.
200 " Otherwise, terminate search as we have found our MSL already.
201 let line = getline(lnum)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200202
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200203 if !s:Match(msl, s:backslash_continuation_regex) &&
204 \ s:Match(lnum, s:backslash_continuation_regex)
205 " If the current line doesn't end in a backslash, but the previous one
206 " does, look for that line's msl
207 "
208 " Example:
209 " foo = "bar" \
210 " "baz"
211 "
212 let msl = lnum
213 elseif s:Match(msl, s:leading_operator_regex)
214 " If the current line starts with a leading operator, keep its indent
215 " and keep looking for an MSL.
216 let msl = lnum
217 elseif s:Match(lnum, s:splat_regex)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200218 " If the above line looks like the "*" of a splat, use the current one's
219 " indentation.
220 "
221 " Example:
222 " Hash[*
223 " method_call do
224 " something
225 "
226 return msl
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200227 elseif s:Match(lnum, s:non_bracket_continuation_regex) &&
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200228 \ s:Match(msl, s:non_bracket_continuation_regex)
229 " If the current line is a non-bracket continuation and so is the
230 " previous one, keep its indent and continue looking for an MSL.
231 "
232 " Example:
233 " method_call one,
234 " two,
235 " three
236 "
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000237 let msl = lnum
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200238 elseif s:Match(lnum, s:dot_continuation_regex) &&
239 \ (s:Match(msl, s:bracket_continuation_regex) || s:Match(msl, s:block_continuation_regex))
240 " If the current line is a bracket continuation or a block-starter, but
241 " the previous is a dot, keep going to see if the previous line is the
242 " start of another continuation.
243 "
244 " Example:
245 " parent.
246 " method_call {
247 " three
248 "
249 let msl = lnum
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200250 elseif s:Match(lnum, s:non_bracket_continuation_regex) &&
251 \ (s:Match(msl, s:bracket_continuation_regex) || s:Match(msl, s:block_continuation_regex))
252 " If the current line is a bracket continuation or a block-starter, but
253 " the previous is a non-bracket one, respect the previous' indentation,
254 " and stop here.
255 "
256 " Example:
257 " method_call one,
258 " two {
259 " three
260 "
261 return lnum
262 elseif s:Match(lnum, s:bracket_continuation_regex) &&
263 \ (s:Match(msl, s:bracket_continuation_regex) || s:Match(msl, s:block_continuation_regex))
264 " If both lines are bracket continuations (the current may also be a
265 " block-starter), use the current one's and stop here
266 "
267 " Example:
268 " method_call(
269 " other_method_call(
270 " foo
271 return msl
272 elseif s:Match(lnum, s:block_regex) &&
273 \ !s:Match(msl, s:continuation_regex) &&
274 \ !s:Match(msl, s:block_continuation_regex)
275 " If the previous line is a block-starter and the current one is
276 " mostly ordinary, use the current one as the MSL.
277 "
278 " Example:
279 " method_call do
280 " something
281 " something_else
282 return msl
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000283 else
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200284 let col = match(line, s:continuation_regex) + 1
285 if (col > 0 && !s:IsInStringOrComment(lnum, col))
286 \ || s:IsInString(lnum, strlen(line))
287 let msl = lnum
288 else
289 break
290 endif
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000291 endif
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200292
293 let msl_body = getline(msl)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000294 let lnum = s:PrevNonBlankNonString(lnum - 1)
295 endwhile
296 return msl
297endfunction
298
299" Check if line 'lnum' has more opening brackets than closing ones.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200300function s:ExtraBrackets(lnum)
301 let opening = {'parentheses': [], 'braces': [], 'brackets': []}
302 let closing = {'parentheses': [], 'braces': [], 'brackets': []}
303
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000304 let line = getline(a:lnum)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200305 let pos = match(line, '[][(){}]', 0)
306
307 " Save any encountered opening brackets, and remove them once a matching
308 " closing one has been found. If a closing bracket shows up that doesn't
309 " close anything, save it for later.
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000310 while pos != -1
311 if !s:IsInStringOrComment(a:lnum, pos + 1)
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200312 if line[pos] == '('
313 call add(opening.parentheses, {'type': '(', 'pos': pos})
314 elseif line[pos] == ')'
315 if empty(opening.parentheses)
316 call add(closing.parentheses, {'type': ')', 'pos': pos})
317 else
318 let opening.parentheses = opening.parentheses[0:-2]
319 endif
320 elseif line[pos] == '{'
321 call add(opening.braces, {'type': '{', 'pos': pos})
322 elseif line[pos] == '}'
323 if empty(opening.braces)
324 call add(closing.braces, {'type': '}', 'pos': pos})
325 else
326 let opening.braces = opening.braces[0:-2]
327 endif
328 elseif line[pos] == '['
329 call add(opening.brackets, {'type': '[', 'pos': pos})
330 elseif line[pos] == ']'
331 if empty(opening.brackets)
332 call add(closing.brackets, {'type': ']', 'pos': pos})
333 else
334 let opening.brackets = opening.brackets[0:-2]
335 endif
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000336 endif
337 endif
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200338
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000339 let pos = match(line, '[][(){}]', pos + 1)
340 endwhile
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200341
342 " Find the rightmost brackets, since they're the ones that are important in
343 " both opening and closing cases
344 let rightmost_opening = {'type': '(', 'pos': -1}
345 let rightmost_closing = {'type': ')', 'pos': -1}
346
347 for opening in opening.parentheses + opening.braces + opening.brackets
348 if opening.pos > rightmost_opening.pos
349 let rightmost_opening = opening
350 endif
351 endfor
352
353 for closing in closing.parentheses + closing.braces + closing.brackets
354 if closing.pos > rightmost_closing.pos
355 let rightmost_closing = closing
356 endif
357 endfor
358
359 return [rightmost_opening, rightmost_closing]
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000360endfunction
361
362function s:Match(lnum, regex)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200363 let line = getline(a:lnum)
364 let offset = match(line, '\C'.a:regex)
365 let col = offset + 1
366
367 while offset > -1 && s:IsInStringOrComment(a:lnum, col)
368 let offset = match(line, '\C'.a:regex, offset + 1)
369 let col = offset + 1
370 endwhile
371
372 if offset > -1
373 return col
374 else
375 return 0
376 endif
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000377endfunction
378
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200379" Locates the containing class/module's definition line, ignoring nested classes
380" along the way.
381"
382function! s:FindContainingClass()
383 let saved_position = getpos('.')
384
385 while searchpair(s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'bW',
386 \ s:end_skip_expr) > 0
387 if expand('<cword>') =~# '\<class\|module\>'
388 let found_lnum = line('.')
389 call setpos('.', saved_position)
390 return found_lnum
391 endif
392 endif
393
394 call setpos('.', saved_position)
395 return 0
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000396endfunction
397
398" 3. GetRubyIndent Function {{{1
399" =========================
400
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200401function GetRubyIndent(...)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000402 " 3.1. Setup {{{2
403 " ----------
404
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200405 " The value of a single shift-width
406 if exists('*shiftwidth')
407 let sw = shiftwidth()
408 else
409 let sw = &sw
410 endif
411
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200412 " For the current line, use the first argument if given, else v:lnum
413 let clnum = a:0 ? a:1 : v:lnum
414
415 " Set up variables for restoring position in file. Could use clnum here.
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000416 let vcol = col('.')
417
418 " 3.2. Work on the current line {{{2
419 " -----------------------------
420
421 " Get the current line.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200422 let line = getline(clnum)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000423 let ind = -1
424
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200425 " If this line is an access modifier keyword, align according to the closest
426 " class declaration.
427 if g:ruby_indent_access_modifier_style == 'indent'
428 if s:Match(clnum, s:access_modifier_regex)
429 let class_line = s:FindContainingClass()
430 if class_line > 0
431 return indent(class_line) + sw
432 endif
433 endif
434 elseif g:ruby_indent_access_modifier_style == 'outdent'
435 if s:Match(clnum, s:access_modifier_regex)
436 let class_line = s:FindContainingClass()
437 if class_line > 0
438 return indent(class_line)
439 endif
440 endif
441 endif
442
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000443 " If we got a closing bracket on an empty line, find its match and indent
444 " according to it. For parentheses we indent to its column - 1, for the
445 " others we indent to the containing line's MSL's level. Return -1 if fail.
446 let col = matchend(line, '^\s*[]})]')
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200447 if col > 0 && !s:IsInStringOrComment(clnum, col)
448 call cursor(clnum, col)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000449 let bs = strpart('(){}[]', stridx(')}]', line[col - 1]) * 2, 2)
450 if searchpair(escape(bs[0], '\['), '', bs[1], 'bW', s:skip_expr) > 0
Bram Moolenaar9964e462007-05-05 17:54:07 +0000451 if line[col-1]==')' && col('.') != col('$') - 1
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200452 let ind = virtcol('.') - 1
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200453 elseif g:ruby_indent_block_style == 'do'
454 let ind = indent(line('.'))
455 else " g:ruby_indent_block_style == 'expression'
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200456 let ind = indent(s:GetMSL(line('.')))
Bram Moolenaar9964e462007-05-05 17:54:07 +0000457 endif
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000458 endif
459 return ind
460 endif
461
462 " If we have a =begin or =end set indent to first column.
463 if match(line, '^\s*\%(=begin\|=end\)$') != -1
464 return 0
465 endif
466
467 " If we have a deindenting keyword, find its match and indent to its level.
468 " TODO: this is messy
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200469 if s:Match(clnum, s:ruby_deindent_keywords)
470 call cursor(clnum, 1)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000471 if searchpair(s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'bW',
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200472 \ s:end_skip_expr) > 0
473 let msl = s:GetMSL(line('.'))
474 let line = getline(line('.'))
475
Bram Moolenaar1e015462005-09-25 22:16:38 +0000476 if strpart(line, 0, col('.') - 1) =~ '=\s*$' &&
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200477 \ strpart(line, col('.') - 1, 2) !~ 'do'
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200478 " assignment to case/begin/etc, on the same line, hanging indent
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200479 let ind = virtcol('.') - 1
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200480 elseif g:ruby_indent_block_style == 'do'
481 " align to line of the "do", not to the MSL
482 let ind = indent(line('.'))
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200483 elseif getline(msl) =~ '=\s*\(#.*\)\=$'
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200484 " in the case of assignment to the MSL, align to the starting line,
485 " not to the MSL
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200486 let ind = indent(line('.'))
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000487 else
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200488 " align to the MSL
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200489 let ind = indent(msl)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000490 endif
491 endif
492 return ind
493 endif
494
495 " If we are in a multi-line string or line-comment, don't do anything to it.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200496 if s:IsInStringOrDocumentation(clnum, matchend(line, '^\s*') + 1)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000497 return indent('.')
498 endif
499
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200500 " If we are at the closing delimiter of a "<<" heredoc-style string, set the
501 " indent to 0.
502 if line =~ '^\k\+\s*$'
503 \ && s:IsInStringDelimiter(clnum, 1)
504 \ && search('\V<<'.line, 'nbW') > 0
505 return 0
506 endif
507
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200508 " If the current line starts with a leading operator, add a level of indent.
509 if s:Match(clnum, s:leading_operator_regex)
510 return indent(s:GetMSL(clnum)) + sw
511 endif
512
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000513 " 3.3. Work on the previous line. {{{2
514 " -------------------------------
515
516 " Find a non-blank, non-multi-line string line above the current line.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200517 let lnum = s:PrevNonBlankNonString(clnum - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518
Bram Moolenaarc236c162008-07-13 17:41:49 +0000519 " If the line is empty and inside a string, use the previous line.
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200520 if line =~ '^\s*$' && lnum != prevnonblank(clnum - 1)
521 return indent(prevnonblank(clnum))
Bram Moolenaarc236c162008-07-13 17:41:49 +0000522 endif
523
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 " At the start of the file use zero indent.
525 if lnum == 0
526 return 0
527 endif
528
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200529 " Set up variables for the previous line.
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000530 let line = getline(lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 let ind = indent(lnum)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000532
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200533 if g:ruby_indent_access_modifier_style == 'indent'
534 " If the previous line was a private/protected keyword, add a
535 " level of indent.
536 if s:Match(lnum, s:indent_access_modifier_regex)
537 return indent(lnum) + sw
538 endif
539 elseif g:ruby_indent_access_modifier_style == 'outdent'
540 " If the previous line was a private/protected/public keyword, add
541 " a level of indent, since the keyword has been out-dented.
542 if s:Match(lnum, s:access_modifier_regex)
543 return indent(lnum) + sw
544 endif
545 endif
546
547 if s:Match(lnum, s:continuable_regex) && s:Match(lnum, s:continuation_regex)
548 return indent(s:GetMSL(lnum)) + sw + sw
549 endif
550
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000551 " If the previous line ended with a block opening, add a level of indent.
552 if s:Match(lnum, s:block_regex)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200553 let msl = s:GetMSL(lnum)
554
555 if g:ruby_indent_block_style == 'do'
556 " don't align to the msl, align to the "do"
557 let ind = indent(lnum) + sw
558 elseif getline(msl) =~ '=\s*\(#.*\)\=$'
559 " in the case of assignment to the msl, align to the starting line,
560 " not to the msl
561 let ind = indent(lnum) + sw
562 else
563 let ind = indent(msl) + sw
564 endif
565 return ind
566 endif
567
568 " If the previous line started with a leading operator, use its MSL's level
569 " of indent
570 if s:Match(lnum, s:leading_operator_regex)
571 return indent(s:GetMSL(lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 endif
573
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200574 " If the previous line ended with the "*" of a splat, add a level of indent
575 if line =~ s:splat_regex
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200576 return indent(lnum) + sw
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200577 endif
578
579 " If the previous line contained unclosed opening brackets and we are still
580 " in them, find the rightmost one and add indent depending on the bracket
581 " type.
582 "
583 " If it contained hanging closing brackets, find the rightmost one, find its
584 " match and indent according to that.
585 if line =~ '[[({]' || line =~ '[])}]\s*\%(#.*\)\=$'
586 let [opening, closing] = s:ExtraBrackets(lnum)
587
588 if opening.pos != -1
589 if opening.type == '(' && searchpair('(', '', ')', 'bW', s:skip_expr) > 0
590 if col('.') + 1 == col('$')
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200591 return ind + sw
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200592 else
593 return virtcol('.')
594 endif
Bram Moolenaar9964e462007-05-05 17:54:07 +0000595 else
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200596 let nonspace = matchend(line, '\S', opening.pos + 1) - 1
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200597 return nonspace > 0 ? nonspace : ind + sw
Bram Moolenaar9964e462007-05-05 17:54:07 +0000598 endif
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200599 elseif closing.pos != -1
600 call cursor(lnum, closing.pos + 1)
601 normal! %
602
603 if s:Match(line('.'), s:ruby_indent_keywords)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200604 return indent('.') + sw
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200605 else
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200606 return indent(s:GetMSL(line('.')))
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200607 endif
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000608 else
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200609 call cursor(clnum, vcol)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000610 end
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 endif
612
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000613 " If the previous line ended with an "end", match that "end"s beginning's
614 " indent.
Bram Moolenaar720c7102007-05-10 18:07:50 +0000615 let col = s:Match(lnum, '\%(^\|[^.:@$]\)\<end\>\s*\%(#.*\)\=$')
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000616 if col > 0
617 call cursor(lnum, col)
618 if searchpair(s:end_start_regex, '', s:end_end_regex, 'bW',
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200619 \ s:end_skip_expr) > 0
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000620 let n = line('.')
621 let ind = indent('.')
622 let msl = s:GetMSL(n)
623 if msl != n
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200624 let ind = indent(msl)
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000625 end
626 return ind
627 endif
628 end
629
630 let col = s:Match(lnum, s:ruby_indent_keywords)
631 if col > 0
632 call cursor(lnum, col)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200633 let ind = virtcol('.') - 1 + sw
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000634 " TODO: make this better (we need to count them) (or, if a searchpair
635 " fails, we know that something is lacking an end and thus we indent a
636 " level
637 if s:Match(lnum, s:end_end_regex)
638 let ind = indent('.')
639 endif
640 return ind
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 endif
642
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000643 " 3.4. Work on the MSL line. {{{2
644 " --------------------------
645
646 " Set up variables to use and search for MSL to the previous line.
647 let p_lnum = lnum
648 let lnum = s:GetMSL(lnum)
649
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200650 " If the previous line wasn't a MSL.
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000651 if p_lnum != lnum
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200652 " If previous line ends bracket and begins non-bracket continuation decrease indent by 1.
653 if s:Match(p_lnum, s:bracket_switch_continuation_regex)
654 return ind - 1
655 " If previous line is a continuation return its indent.
656 " TODO: the || s:IsInString() thing worries me a bit.
657 elseif s:Match(p_lnum, s:non_bracket_continuation_regex) || s:IsInString(p_lnum,strlen(line))
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000658 return ind
659 endif
660 endif
661
662 " Set up more variables, now that we know we wasn't continuation bound.
663 let line = getline(lnum)
664 let msl_ind = indent(lnum)
665
666 " If the MSL line had an indenting keyword in it, add a level of indent.
667 " TODO: this does not take into account contrived things such as
668 " module Foo; class Bar; end
669 if s:Match(lnum, s:ruby_indent_keywords)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200670 let ind = msl_ind + sw
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000671 if s:Match(lnum, s:end_end_regex)
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200672 let ind = ind - sw
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000673 endif
674 return ind
675 endif
676
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200677 " If the previous line ended with [*+/.,-=], but wasn't a block ending or a
678 " closing bracket, indent one extra level.
679 if s:Match(lnum, s:non_bracket_continuation_regex) && !s:Match(lnum, '^\s*\([\])}]\|end\)')
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000680 if lnum == p_lnum
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200681 let ind = msl_ind + sw
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000682 else
683 let ind = msl_ind
684 endif
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200685 return ind
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000686 endif
687
688 " }}}2
689
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 return ind
691endfunction
692
Bram Moolenaar60a795a2005-09-16 21:55:43 +0000693" }}}1
694
695let &cpo = s:cpo_save
696unlet s:cpo_save
Bram Moolenaar9964e462007-05-05 17:54:07 +0000697
Bram Moolenaarec7944a2013-06-12 21:29:15 +0200698" vim:set sw=2 sts=2 ts=8 et: