1" Vim indent file 2" Language: Ruby 3" Maintainer: Nikolai Weibull <now at bitwi.se> 4" Info: $Id$ 5" URL: http://vim-ruby.rubyforge.org 6" Anon CVS: See above site 7" Release Coordinator: Doug Kearns <[email protected]> 8 9" 0. Initialization {{{1 10" ================= 11 12" Only load this indent file when no other was loaded. 13if exists("b:did_indent") 14 finish 15endif 16let b:did_indent = 1 17 18setlocal nosmartindent 19 20" Now, set up our indentation expression and keys that trigger it. 21setlocal indentexpr=GetRubyIndent() 22setlocal indentkeys=0{,0},0),0],!^F,o,O,e 23setlocal indentkeys+==end,=elsif,=when,=ensure,=rescue,==begin,==end 24 25" Only define the function once. 26if exists("*GetRubyIndent") 27 finish 28endif 29 30let s:cpo_save = &cpo 31set cpo&vim 32 33" 1. Variables {{{1 34" ============ 35 36" Regex of syntax group names that are or delimit string or are comments. 37let s:syng_strcom = '\<ruby\%(String\|StringDelimiter\|ASCIICode' . 38 \ '\|Interpolation\|NoInterpolation\|Escape\|Comment\|Documentation\)\>' 39 40" Regex of syntax group names that are strings. 41let s:syng_string = 42 \ '\<ruby\%(String\|StringDelimiter\|Interpolation\|NoInterpolation\|Escape\)\>' 43 44" Regex of syntax group names that are strings or documentation. 45let s:syng_stringdoc = 46 \'\<ruby\%(String\|StringDelimiter\|Interpolation\|NoInterpolation\|Escape\|Documentation\)\>' 47 48" Expression used to check whether we should skip a match with searchpair(). 49let s:skip_expr = 50 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '".s:syng_strcom."'" 51 52" Regex used for words that, at the start of a line, add a level of indent. 53let s:ruby_indent_keywords = '^\s*\zs\<\%(module\|class\|def\|if\|for' . 54 \ '\|while\|until\|else\|elsif\|case\|when\|unless\|begin\|ensure' . 55 \ '\|rescue\)\>' . 56 \ '\|\%([*+/,=:-]\|<<\|>>\)\s*\zs' . 57 \ '\<\%(if\|for\|while\|until\|case\|unless\|begin\)\>' 58 59" Regex used for words that, at the start of a line, remove a level of indent. 60let s:ruby_deindent_keywords = 61 \ '^\s*\zs\<\%(ensure\|else\|rescue\|elsif\|when\|end\)\>' 62 63" Regex that defines the start-match for the 'end' keyword. 64"let s:end_start_regex = '\%(^\|[^.]\)\<\%(module\|class\|def\|if\|for\|while\|until\|case\|unless\|begin\|do\)\>' 65" TODO: the do here should be restricted somewhat (only at end of line)? 66let s:end_start_regex = '^\s*\zs\<\%(module\|class\|def\|if\|for' . 67 \ '\|while\|until\|case\|unless\|begin\)\>' . 68 \ '\|\%([*+/,=:-]\|<<\|>>\)\s*\zs' . 69 \ '\<\%(if\|for\|while\|until\|case\|unless\|begin\)\>' . 70 \ '\|\<do\>' 71 72" Regex that defines the middle-match for the 'end' keyword. 73let s:end_middle_regex = '\<\%(ensure\|else\|\%(\%(^\|;\)\s*\)\@<=\<rescue\>\|when\|elsif\)\>' 74 75" Regex that defines the end-match for the 'end' keyword. 76let s:end_end_regex = '\%(^\|[^.:]\)\@<=\<end\>' 77 78" Expression used for searchpair() call for finding match for 'end' keyword. 79let s:end_skip_expr = s:skip_expr . 80 \ ' || (expand("<cword>") == "do"' . 81 \ ' && getline(".") =~ "^\\s*\\<while\\|until\\|for\\>")' 82 83" Regex that defines continuation lines, not including (, {, or [. 84let s:continuation_regex = '\%([\\*+/.,=:-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' 85 86" Regex that defines continuation lines. 87" TODO: this needs to deal with if ...: and so on 88let s:continuation_regex2 = 89 \ '\%([\\*+/.,=:({[-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' 90 91" Regex that defines blocks. 92let s:block_regex = 93 \ '\%(\<do\>\|{\)\s*\%(|\%([*@]\=\h\w*,\=\s*\)\%(,\s*[*@]\=\h\w*\)*|\)\=\s*\%(#.*\)\=$' 94 95" 2. Auxiliary Functions {{{1 96" ====================== 97 98" Check if the character at lnum:col is inside a string, comment, or is ascii. 99function s:IsInStringOrComment(lnum, col) 100 return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_strcom 101endfunction 102 103" Check if the character at lnum:col is inside a string. 104function s:IsInString(lnum, col) 105 return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_string 106endfunction 107 108" Check if the character at lnum:col is inside a string or documentation. 109function s:IsInStringOrDocumentation(lnum, col) 110 return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_stringdoc 111endfunction 112 113" Find line above 'lnum' that isn't empty, in a comment, or in a string. 114function s:PrevNonBlankNonString(lnum) 115 let in_block = 0 116 let lnum = prevnonblank(a:lnum) 117 while lnum > 0 118 " Go in and out of blocks comments as necessary. 119 " If the line isn't empty (with opt. comment) or in a string, end search. 120 let line = getline(lnum) 121 if line =~ '^=begin$' 122 if in_block 123 let in_block = 0 124 else 125 break 126 endif 127 elseif !in_block && line =~ '^=end$' 128 let in_block = 1 129 elseif !in_block && line !~ '^\s*#.*$' && !(s:IsInStringOrComment(lnum, 1) 130 \ && s:IsInStringOrComment(lnum, strlen(line))) 131 break 132 endif 133 let lnum = prevnonblank(lnum - 1) 134 endwhile 135 return lnum 136endfunction 137 138" Find line above 'lnum' that started the continuation 'lnum' may be part of. 139function s:GetMSL(lnum) 140 " Start on the line we're at and use its indent. 141 let msl = a:lnum 142 let lnum = s:PrevNonBlankNonString(a:lnum - 1) 143 while lnum > 0 144 " If we have a continuation line, or we're in a string, use line as MSL. 145 " Otherwise, terminate search as we have found our MSL already. 146 let line = getline(lnum) 147 let col = match(line, s:continuation_regex2) + 1 148 if (col > 0 && !s:IsInStringOrComment(lnum, col)) 149 \ || s:IsInString(lnum, strlen(line)) 150 let msl = lnum 151 else 152 break 153 endif 154 let lnum = s:PrevNonBlankNonString(lnum - 1) 155 endwhile 156 return msl 157endfunction 158 159" Check if line 'lnum' has more opening brackets than closing ones. 160function s:LineHasOpeningBrackets(lnum) 161 let open_0 = 0 162 let open_2 = 0 163 let open_4 = 0 164 let line = getline(a:lnum) 165 let pos = match(line, '[][(){}]', 0) 166 while pos != -1 167 if !s:IsInStringOrComment(a:lnum, pos + 1) 168 let idx = stridx('(){}[]', line[pos]) 169 if idx % 2 == 0 170 let open_{idx} = open_{idx} + 1 171 else 172 let open_{idx - 1} = open_{idx - 1} - 1 173 endif 174 endif 175 let pos = match(line, '[][(){}]', pos + 1) 176 endwhile 177 return (open_0 > 0) . (open_2 > 0) . (open_4 > 0) 178endfunction 179 180function s:Match(lnum, regex) 181 let col = match(getline(a:lnum), a:regex) + 1 182 return col > 0 && !s:IsInStringOrComment(a:lnum, col) ? col : 0 183endfunction 184 185function s:MatchLast(lnum, regex) 186 let line = getline(a:lnum) 187 let col = match(line, '.*\zs' . a:regex) 188 while col != -1 && s:IsInStringOrComment(a:lnum, col) 189 let line = strpart(line, 0, col) 190 let col = match(line, '.*' . a:regex) 191 endwhile 192 return col + 1 193endfunction 194 195" 3. GetRubyIndent Function {{{1 196" ========================= 197 198function GetRubyIndent() 199 " 3.1. Setup {{{2 200 " ---------- 201 202 " Set up variables for restoring position in file. Could use v:lnum here. 203 let vcol = col('.') 204 205 " 3.2. Work on the current line {{{2 206 " ----------------------------- 207 208 " Get the current line. 209 let line = getline(v:lnum) 210 let ind = -1 211 212 " If we got a closing bracket on an empty line, find its match and indent 213 " according to it. For parentheses we indent to its column - 1, for the 214 " others we indent to the containing line's MSL's level. Return -1 if fail. 215 let col = matchend(line, '^\s*[]})]') 216 if col > 0 && !s:IsInStringOrComment(v:lnum, col) 217 call cursor(v:lnum, col) 218 let bs = strpart('(){}[]', stridx(')}]', line[col - 1]) * 2, 2) 219 if searchpair(escape(bs[0], '\['), '', bs[1], 'bW', s:skip_expr) > 0 220 let ind = line[col-1]==')' ? virtcol('.')-1 : indent(s:GetMSL(line('.'))) 221 endif 222 return ind 223 endif 224 225 " If we have a =begin or =end set indent to first column. 226 if match(line, '^\s*\%(=begin\|=end\)$') != -1 227 return 0 228 endif 229 230 " If we have a deindenting keyword, find its match and indent to its level. 231 " TODO: this is messy 232 if s:Match(v:lnum, s:ruby_deindent_keywords) 233 call cursor(v:lnum, 1) 234 if searchpair(s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'bW', 235 \ s:end_skip_expr) > 0 236 let line = getline('.') 237 if strpart(line, 0, col('.') - 1) =~ '=\s*$' && 238 \ strpart(line, col('.') - 1, 2) !~ 'do' 239 let ind = virtcol('.') - 1 240 else 241 let ind = indent('.') 242 endif 243 endif 244 return ind 245 endif 246 247 " If we are in a multi-line string or line-comment, don't do anything to it. 248 if s:IsInStringOrDocumentation(v:lnum, matchend(line, '^\s*') + 1) 249 return indent('.') 250 endif 251 252 " 3.3. Work on the previous line. {{{2 253 " ------------------------------- 254 255 " Find a non-blank, non-multi-line string line above the current line. 256 let lnum = s:PrevNonBlankNonString(v:lnum - 1) 257 258 " At the start of the file use zero indent. 259 if lnum == 0 260 return 0 261 endif 262 263 " Set up variables for current line. 264 let line = getline(lnum) 265 let ind = indent(lnum) 266 267 " If the previous line ended with a block opening, add a level of indent. 268 if s:Match(lnum, s:block_regex) 269 return indent(s:GetMSL(lnum)) + &sw 270 endif 271 272 " If the previous line contained an opening bracket, and we are still in it, 273 " add indent depending on the bracket type. 274 if line =~ '[[({]' 275 let counts = s:LineHasOpeningBrackets(lnum) 276 if counts[0] == '1' && searchpair('(', '', ')', 'bW', s:skip_expr) > 0 277 return virtcol('.') 278 elseif counts[1] == '1' || counts[2] == '1' 279 return ind + &sw 280 else 281 call cursor(v:lnum, vcol) 282 end 283 endif 284 285 " If the previous line ended with an "end", match that "end"s beginning's 286 " indent. 287 let col = s:Match(lnum, '\%(^\|[^.]\)\<end\>\s*\%(#.*\)\=$') 288 if col > 0 289 call cursor(lnum, col) 290 if searchpair(s:end_start_regex, '', s:end_end_regex, 'bW', 291 \ s:end_skip_expr) > 0 292 let n = line('.') 293 let ind = indent('.') 294 let msl = s:GetMSL(n) 295 if msl != n 296 let ind = indent(msl) 297 end 298 return ind 299 endif 300 end 301 302 let col = s:Match(lnum, s:ruby_indent_keywords) 303 if col > 0 304 call cursor(lnum, col) 305 let ind = virtcol('.') - 1 + &sw 306" let ind = indent(lnum) + &sw 307 " TODO: make this better (we need to count them) (or, if a searchpair 308 " fails, we know that something is lacking an end and thus we indent a 309 " level 310 if s:Match(lnum, s:end_end_regex) 311 let ind = indent('.') 312 endif 313 return ind 314 endif 315 316 " 3.4. Work on the MSL line. {{{2 317 " -------------------------- 318 319 " Set up variables to use and search for MSL to the previous line. 320 let p_lnum = lnum 321 let lnum = s:GetMSL(lnum) 322 323 " If the previous line wasn't a MSL and is continuation return its indent. 324 " TODO: the || s:IsInString() thing worries me a bit. 325 if p_lnum != lnum 326 if s:Match(p_lnum,s:continuation_regex)||s:IsInString(p_lnum,strlen(line)) 327 return ind 328 endif 329 endif 330 331 " Set up more variables, now that we know we wasn't continuation bound. 332 let line = getline(lnum) 333 let msl_ind = indent(lnum) 334 335 " If the MSL line had an indenting keyword in it, add a level of indent. 336 " TODO: this does not take into account contrived things such as 337 " module Foo; class Bar; end 338 if s:Match(lnum, s:ruby_indent_keywords) 339 let ind = msl_ind + &sw 340 if s:Match(lnum, s:end_end_regex) 341 let ind = ind - &sw 342 endif 343 return ind 344 endif 345 346 " If the previous line ended with [*+/.-=], indent one extra level. 347 if s:Match(lnum, s:continuation_regex) 348 if lnum == p_lnum 349 let ind = msl_ind + &sw 350 else 351 let ind = msl_ind 352 endif 353 endif 354 355 " }}}2 356 357 return ind 358endfunction 359 360" }}}1 361 362let &cpo = s:cpo_save 363unlet s:cpo_save 364