Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim indent file |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 2 | " Language: Ruby |
| 3 | " Maintainer: Nikolai Weibull <now at bitwi.se> |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 4 | " URL: https://github.com/vim-ruby/vim-ruby |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 5 | " Release Coordinator: Doug Kearns <dougkearns@gmail.com> |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 6 | |
| 7 | " 0. Initialization {{{1 |
| 8 | " ================= |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 9 | |
| 10 | " Only load this indent file when no other was loaded. |
| 11 | if exists("b:did_indent") |
| 12 | finish |
| 13 | endif |
| 14 | let b:did_indent = 1 |
| 15 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 16 | if !exists('g:ruby_indent_access_modifier_style') |
| 17 | " Possible values: "normal", "indent", "outdent" |
| 18 | let g:ruby_indent_access_modifier_style = 'normal' |
| 19 | endif |
| 20 | |
| 21 | if !exists('g:ruby_indent_block_style') |
| 22 | " Possible values: "expression", "do" |
| 23 | let g:ruby_indent_block_style = 'expression' |
| 24 | endif |
| 25 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 26 | setlocal nosmartindent |
| 27 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 28 | " Now, set up our indentation expression and keys that trigger it. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 29 | setlocal indentexpr=GetRubyIndent(v:lnum) |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 30 | setlocal indentkeys=0{,0},0),0],!^F,o,O,e,:,. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 31 | setlocal indentkeys+==end,=else,=elsif,=when,=ensure,=rescue,==begin,==end |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 32 | setlocal indentkeys+==private,=protected,=public |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 33 | |
| 34 | " Only define the function once. |
| 35 | if exists("*GetRubyIndent") |
| 36 | finish |
| 37 | endif |
| 38 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 39 | let s:cpo_save = &cpo |
| 40 | set cpo&vim |
| 41 | |
| 42 | " 1. Variables {{{1 |
| 43 | " ============ |
| 44 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 45 | " Regex of syntax group names that are or delimit strings/symbols or are comments. |
| 46 | let s:syng_strcom = '\<ruby\%(Regexp\|RegexpDelimiter\|RegexpEscape' . |
| 47 | \ '\|Symbol\|String\|StringDelimiter\|StringEscape\|ASCIICode' . |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 48 | \ '\|Interpolation\|InterpolationDelimiter\|NoInterpolation\|Comment\|Documentation\)\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 49 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 50 | " Regex of syntax group names that are strings. |
| 51 | let s:syng_string = |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 52 | \ '\<ruby\%(String\|Interpolation\|NoInterpolation\|StringEscape\)\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 53 | |
| 54 | " Regex of syntax group names that are strings or documentation. |
| 55 | let s:syng_stringdoc = |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 56 | \'\<ruby\%(String\|Interpolation\|NoInterpolation\|StringEscape\|Documentation\)\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 57 | |
| 58 | " Expression used to check whether we should skip a match with searchpair(). |
| 59 | let s:skip_expr = |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 60 | \ "synIDattr(synID(line('.'),col('.'),1),'name') =~ '".s:syng_strcom."'" |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 61 | |
| 62 | " Regex used for words that, at the start of a line, add a level of indent. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 63 | let 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 67 | \ '\|\%([=,*/%+-]\|<<\|>>\|:\s\)\s*\zs' . |
| 68 | \ '\<\%(if\|for\|while\|until\|case\|unless\|begin\):\@!\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 69 | |
| 70 | " Regex used for words that, at the start of a line, remove a level of indent. |
| 71 | let s:ruby_deindent_keywords = |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 72 | \ '^\s*\zs\<\%(ensure\|else\|rescue\|elsif\|when\|end\):\@!\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 73 | |
| 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 77 | let s:end_start_regex = |
| 78 | \ '\C\%(^\s*\|[=,*/%+\-|;{]\|<<\|>>\|:\s\)\s*\zs' . |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 79 | \ '\<\%(module\|class\|if\|for\|while\|until\|case\|unless\|begin' . |
| 80 | \ '\|\%(public\|protected\|private\)\=\s*def\):\@!\>' . |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 81 | \ '\|\%(^\|[^.:@$]\)\@<=\<do:\@!\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 82 | |
| 83 | " Regex that defines the middle-match for the 'end' keyword. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 84 | let s:end_middle_regex = '\<\%(ensure\|else\|\%(\%(^\|;\)\s*\)\@<=\<rescue:\@!\>\|when\|elsif\):\@!\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 85 | |
| 86 | " Regex that defines the end-match for the 'end' keyword. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 87 | let s:end_end_regex = '\%(^\|[^.:@$]\)\@<=\<end:\@!\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 88 | |
| 89 | " Expression used for searchpair() call for finding match for 'end' keyword. |
| 90 | let s:end_skip_expr = s:skip_expr . |
| 91 | \ ' || (expand("<cword>") == "do"' . |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 92 | \ ' && getline(".") =~ "^\\s*\\<\\(while\\|until\\|for\\):\\@!\\>")' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 93 | |
| 94 | " Regex that defines continuation lines, not including (, {, or [. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 95 | let s:non_bracket_continuation_regex = '\%([\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 96 | |
| 97 | " Regex that defines continuation lines. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 98 | let s:continuation_regex = |
| 99 | \ '\%(%\@<![({[\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' |
| 100 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 101 | " Regex that defines continuable keywords |
| 102 | let s:continuable_regex = |
| 103 | \ '\C\%(^\s*\|[=,*/%+\-|;{]\|<<\|>>\|:\s\)\s*\zs' . |
| 104 | \ '\<\%(if\|for\|while\|until\|unless\):\@!\>' |
| 105 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 106 | " Regex that defines bracket continuations |
| 107 | let s:bracket_continuation_regex = '%\@<!\%([({[]\)\s*\%(#.*\)\=$' |
| 108 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 109 | " Regex that defines dot continuations |
| 110 | let s:dot_continuation_regex = '%\@<!\.\s*\%(#.*\)\=$' |
| 111 | |
| 112 | " Regex that defines backslash continuations |
| 113 | let s:backslash_continuation_regex = '%\@<!\\\s*$' |
| 114 | |
| 115 | " Regex that defines end of bracket continuation followed by another continuation |
| 116 | let s:bracket_switch_continuation_regex = '^\([^(]\+\zs).\+\)\+'.s:continuation_regex |
| 117 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 118 | " Regex that defines the first part of a splat pattern |
| 119 | let s:splat_regex = '[[,(]\s*\*\s*\%(#.*\)\=$' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 120 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 121 | " Regex that describes all indent access modifiers |
| 122 | let s:access_modifier_regex = '\C^\s*\%(public\|protected\|private\)\s*\%(#.*\)\=$' |
| 123 | |
| 124 | " Regex that describes the indent access modifiers (excludes public) |
| 125 | let s:indent_access_modifier_regex = '\C^\s*\%(protected\|private\)\s*\%(#.*\)\=$' |
| 126 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 127 | " Regex that defines blocks. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 128 | " |
| 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 136 | let s:block_regex = |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 137 | \ '\%(\<do:\@!\>\|%\@<!{\)\s*\%(|[^|]*|\)\=\s*\%(#.*\)\=$' |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 138 | |
| 139 | let s:block_continuation_regex = '^\s*[^])}\t ].*'.s:block_regex |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 140 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 141 | " Regex that describes a leading operator (only a method call's dot for now) |
| 142 | let s:leading_operator_regex = '^\s*[.]' |
| 143 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 144 | " 2. Auxiliary Functions {{{1 |
| 145 | " ====================== |
| 146 | |
| 147 | " Check if the character at lnum:col is inside a string, comment, or is ascii. |
| 148 | function s:IsInStringOrComment(lnum, col) |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 149 | return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_strcom |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 150 | endfunction |
| 151 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 152 | " Check if the character at lnum:col is inside a string. |
| 153 | function s:IsInString(lnum, col) |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 154 | return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_string |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 155 | endfunction |
| 156 | |
| 157 | " Check if the character at lnum:col is inside a string or documentation. |
| 158 | function s:IsInStringOrDocumentation(lnum, col) |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 159 | return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_stringdoc |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 160 | endfunction |
| 161 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 162 | " Check if the character at lnum:col is inside a string delimiter |
| 163 | function s:IsInStringDelimiter(lnum, col) |
| 164 | return synIDattr(synID(a:lnum, a:col, 1), 'name') == 'rubyStringDelimiter' |
| 165 | endfunction |
| 166 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 167 | " Find line above 'lnum' that isn't empty, in a comment, or in a string. |
| 168 | function 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 175 | if line =~ '^=begin' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 176 | if in_block |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 177 | let in_block = 0 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 178 | else |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 179 | break |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 180 | endif |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 181 | elseif !in_block && line =~ '^=end' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 182 | let in_block = 1 |
| 183 | elseif !in_block && line !~ '^\s*#.*$' && !(s:IsInStringOrComment(lnum, 1) |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 184 | \ && s:IsInStringOrComment(lnum, strlen(line))) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 185 | break |
| 186 | endif |
| 187 | let lnum = prevnonblank(lnum - 1) |
| 188 | endwhile |
| 189 | return lnum |
| 190 | endfunction |
| 191 | |
| 192 | " Find line above 'lnum' that started the continuation 'lnum' may be part of. |
| 193 | function s:GetMSL(lnum) |
| 194 | " Start on the line we're at and use its indent. |
| 195 | let msl = a:lnum |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 196 | let msl_body = getline(msl) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 197 | 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 202 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 203 | 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 218 | " 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 227 | elseif s:Match(lnum, s:non_bracket_continuation_regex) && |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 228 | \ 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 237 | let msl = lnum |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 238 | 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 250 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 283 | else |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 284 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 291 | endif |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 292 | |
| 293 | let msl_body = getline(msl) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 294 | let lnum = s:PrevNonBlankNonString(lnum - 1) |
| 295 | endwhile |
| 296 | return msl |
| 297 | endfunction |
| 298 | |
| 299 | " Check if line 'lnum' has more opening brackets than closing ones. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 300 | function s:ExtraBrackets(lnum) |
| 301 | let opening = {'parentheses': [], 'braces': [], 'brackets': []} |
| 302 | let closing = {'parentheses': [], 'braces': [], 'brackets': []} |
| 303 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 304 | let line = getline(a:lnum) |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 305 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 310 | while pos != -1 |
| 311 | if !s:IsInStringOrComment(a:lnum, pos + 1) |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 312 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 336 | endif |
| 337 | endif |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 338 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 339 | let pos = match(line, '[][(){}]', pos + 1) |
| 340 | endwhile |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 341 | |
| 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 360 | endfunction |
| 361 | |
| 362 | function s:Match(lnum, regex) |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 363 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 377 | endfunction |
| 378 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 379 | " Locates the containing class/module's definition line, ignoring nested classes |
| 380 | " along the way. |
| 381 | " |
| 382 | function! 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 396 | endfunction |
| 397 | |
| 398 | " 3. GetRubyIndent Function {{{1 |
| 399 | " ========================= |
| 400 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 401 | function GetRubyIndent(...) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 402 | " 3.1. Setup {{{2 |
| 403 | " ---------- |
| 404 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 405 | " 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 412 | " 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 416 | let vcol = col('.') |
| 417 | |
| 418 | " 3.2. Work on the current line {{{2 |
| 419 | " ----------------------------- |
| 420 | |
| 421 | " Get the current line. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 422 | let line = getline(clnum) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 423 | let ind = -1 |
| 424 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 425 | " 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 443 | " 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 447 | if col > 0 && !s:IsInStringOrComment(clnum, col) |
| 448 | call cursor(clnum, col) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 449 | let bs = strpart('(){}[]', stridx(')}]', line[col - 1]) * 2, 2) |
| 450 | if searchpair(escape(bs[0], '\['), '', bs[1], 'bW', s:skip_expr) > 0 |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 451 | if line[col-1]==')' && col('.') != col('$') - 1 |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 452 | let ind = virtcol('.') - 1 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 453 | elseif g:ruby_indent_block_style == 'do' |
| 454 | let ind = indent(line('.')) |
| 455 | else " g:ruby_indent_block_style == 'expression' |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 456 | let ind = indent(s:GetMSL(line('.'))) |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 457 | endif |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 458 | 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 469 | if s:Match(clnum, s:ruby_deindent_keywords) |
| 470 | call cursor(clnum, 1) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 471 | if searchpair(s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'bW', |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 472 | \ s:end_skip_expr) > 0 |
| 473 | let msl = s:GetMSL(line('.')) |
| 474 | let line = getline(line('.')) |
| 475 | |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 476 | if strpart(line, 0, col('.') - 1) =~ '=\s*$' && |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 477 | \ strpart(line, col('.') - 1, 2) !~ 'do' |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 478 | " assignment to case/begin/etc, on the same line, hanging indent |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 479 | let ind = virtcol('.') - 1 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 480 | elseif g:ruby_indent_block_style == 'do' |
| 481 | " align to line of the "do", not to the MSL |
| 482 | let ind = indent(line('.')) |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 483 | elseif getline(msl) =~ '=\s*\(#.*\)\=$' |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 484 | " in the case of assignment to the MSL, align to the starting line, |
| 485 | " not to the MSL |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 486 | let ind = indent(line('.')) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 487 | else |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 488 | " align to the MSL |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 489 | let ind = indent(msl) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 490 | 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 496 | if s:IsInStringOrDocumentation(clnum, matchend(line, '^\s*') + 1) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 497 | return indent('.') |
| 498 | endif |
| 499 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 500 | " 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 508 | " 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 513 | " 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 Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 517 | let lnum = s:PrevNonBlankNonString(clnum - 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 518 | |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 519 | " If the line is empty and inside a string, use the previous line. |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 520 | if line =~ '^\s*$' && lnum != prevnonblank(clnum - 1) |
| 521 | return indent(prevnonblank(clnum)) |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 522 | endif |
| 523 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 524 | " At the start of the file use zero indent. |
| 525 | if lnum == 0 |
| 526 | return 0 |
| 527 | endif |
| 528 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 529 | " Set up variables for the previous line. |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 530 | let line = getline(lnum) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 531 | let ind = indent(lnum) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 532 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 533 | 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 551 | " If the previous line ended with a block opening, add a level of indent. |
| 552 | if s:Match(lnum, s:block_regex) |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 553 | 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 572 | endif |
| 573 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 574 | " If the previous line ended with the "*" of a splat, add a level of indent |
| 575 | if line =~ s:splat_regex |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 576 | return indent(lnum) + sw |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 577 | 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 591 | return ind + sw |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 592 | else |
| 593 | return virtcol('.') |
| 594 | endif |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 595 | else |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 596 | let nonspace = matchend(line, '\S', opening.pos + 1) - 1 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 597 | return nonspace > 0 ? nonspace : ind + sw |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 598 | endif |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 599 | elseif closing.pos != -1 |
| 600 | call cursor(lnum, closing.pos + 1) |
| 601 | normal! % |
| 602 | |
| 603 | if s:Match(line('.'), s:ruby_indent_keywords) |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 604 | return indent('.') + sw |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 605 | else |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 606 | return indent(s:GetMSL(line('.'))) |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 607 | endif |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 608 | else |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 609 | call cursor(clnum, vcol) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 610 | end |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 611 | endif |
| 612 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 613 | " If the previous line ended with an "end", match that "end"s beginning's |
| 614 | " indent. |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 615 | let col = s:Match(lnum, '\%(^\|[^.:@$]\)\<end\>\s*\%(#.*\)\=$') |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 616 | if col > 0 |
| 617 | call cursor(lnum, col) |
| 618 | if searchpair(s:end_start_regex, '', s:end_end_regex, 'bW', |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 619 | \ s:end_skip_expr) > 0 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 620 | let n = line('.') |
| 621 | let ind = indent('.') |
| 622 | let msl = s:GetMSL(n) |
| 623 | if msl != n |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 624 | let ind = indent(msl) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 625 | 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 633 | let ind = virtcol('.') - 1 + sw |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 634 | " 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 641 | endif |
| 642 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 643 | " 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 650 | " If the previous line wasn't a MSL. |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 651 | if p_lnum != lnum |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 652 | " 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 658 | 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 Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 670 | let ind = msl_ind + sw |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 671 | if s:Match(lnum, s:end_end_regex) |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 672 | let ind = ind - sw |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 673 | endif |
| 674 | return ind |
| 675 | endif |
| 676 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 677 | " 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 Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 680 | if lnum == p_lnum |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 681 | let ind = msl_ind + sw |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 682 | else |
| 683 | let ind = msl_ind |
| 684 | endif |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 685 | return ind |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 686 | endif |
| 687 | |
| 688 | " }}}2 |
| 689 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 690 | return ind |
| 691 | endfunction |
| 692 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 693 | " }}}1 |
| 694 | |
| 695 | let &cpo = s:cpo_save |
| 696 | unlet s:cpo_save |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 697 | |
Bram Moolenaar | ec7944a | 2013-06-12 21:29:15 +0200 | [diff] [blame] | 698 | " vim:set sw=2 sts=2 ts=8 et: |