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> |
| 4 | " Info: $Id$ |
| 5 | " URL: http://vim-ruby.rubyforge.org |
| 6 | " Anon CVS: See above site |
| 7 | " Release Coordinator: Doug Kearns <dougkearns@gmail.com> |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 8 | |
| 9 | " 0. Initialization {{{1 |
| 10 | " ================= |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 11 | |
| 12 | " Only load this indent file when no other was loaded. |
| 13 | if exists("b:did_indent") |
| 14 | finish |
| 15 | endif |
| 16 | let b:did_indent = 1 |
| 17 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 18 | setlocal nosmartindent |
| 19 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 20 | " Now, set up our indentation expression and keys that trigger it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 21 | setlocal indentexpr=GetRubyIndent() |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 22 | setlocal indentkeys=0{,0},0),0],!^F,o,O,e |
| 23 | setlocal indentkeys+==end,=elsif,=when,=ensure,=rescue,==begin,==end |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | |
| 25 | " Only define the function once. |
| 26 | if exists("*GetRubyIndent") |
| 27 | finish |
| 28 | endif |
| 29 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 30 | let s:cpo_save = &cpo |
| 31 | set cpo&vim |
| 32 | |
| 33 | " 1. Variables {{{1 |
| 34 | " ============ |
| 35 | |
| 36 | " Regex of syntax group names that are or delimit string or are comments. |
| 37 | let s:syng_strcom = '\<ruby\%(String\|StringDelimiter\|ASCIICode' . |
| 38 | \ '\|Interpolation\|NoInterpolation\|Escape\|Comment\|Documentation\)\>' |
| 39 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 40 | " Regex of syntax group names that are strings. |
| 41 | let s:syng_string = |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 42 | \ '\<ruby\%(String\|StringDelimiter\|Interpolation\|NoInterpolation\|Escape\)\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 43 | |
| 44 | " Regex of syntax group names that are strings or documentation. |
| 45 | let s:syng_stringdoc = |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 46 | \'\<ruby\%(String\|StringDelimiter\|Interpolation\|NoInterpolation\|Escape\|Documentation\)\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 47 | |
| 48 | " Expression used to check whether we should skip a match with searchpair(). |
| 49 | let 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. |
| 53 | let 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. |
| 60 | let 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)? |
| 66 | let 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. |
| 73 | let s:end_middle_regex = '\<\%(ensure\|else\|\%(\%(^\|;\)\s*\)\@<=\<rescue\>\|when\|elsif\)\>' |
| 74 | |
| 75 | " Regex that defines the end-match for the 'end' keyword. |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 76 | let s:end_end_regex = '\%(^\|[^.:@$]\)\@<=\<end\>' |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 77 | |
| 78 | " Expression used for searchpair() call for finding match for 'end' keyword. |
| 79 | let 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 [. |
| 84 | let s:continuation_regex = '\%([\\*+/.,=:-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' |
| 85 | |
| 86 | " Regex that defines continuation lines. |
| 87 | " TODO: this needs to deal with if ...: and so on |
| 88 | let s:continuation_regex2 = |
| 89 | \ '\%([\\*+/.,=:({[-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$' |
| 90 | |
| 91 | " Regex that defines blocks. |
| 92 | let 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. |
| 99 | function s:IsInStringOrComment(lnum, col) |
| 100 | return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_strcom |
| 101 | endfunction |
| 102 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 103 | " Check if the character at lnum:col is inside a string. |
| 104 | function s:IsInString(lnum, col) |
| 105 | return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_string |
| 106 | endfunction |
| 107 | |
| 108 | " Check if the character at lnum:col is inside a string or documentation. |
| 109 | function s:IsInStringOrDocumentation(lnum, col) |
| 110 | return synIDattr(synID(a:lnum, a:col, 0), 'name') =~ s:syng_stringdoc |
| 111 | endfunction |
| 112 | |
| 113 | " Find line above 'lnum' that isn't empty, in a comment, or in a string. |
| 114 | function 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 |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 123 | let in_block = 0 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 124 | else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 125 | break |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 126 | endif |
| 127 | elseif !in_block && line =~ '^=end$' |
| 128 | let in_block = 1 |
| 129 | elseif !in_block && line !~ '^\s*#.*$' && !(s:IsInStringOrComment(lnum, 1) |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 130 | \ && s:IsInStringOrComment(lnum, strlen(line))) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 131 | break |
| 132 | endif |
| 133 | let lnum = prevnonblank(lnum - 1) |
| 134 | endwhile |
| 135 | return lnum |
| 136 | endfunction |
| 137 | |
| 138 | " Find line above 'lnum' that started the continuation 'lnum' may be part of. |
| 139 | function 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)) |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 149 | \ || s:IsInString(lnum, strlen(line)) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 150 | let msl = lnum |
| 151 | else |
| 152 | break |
| 153 | endif |
| 154 | let lnum = s:PrevNonBlankNonString(lnum - 1) |
| 155 | endwhile |
| 156 | return msl |
| 157 | endfunction |
| 158 | |
| 159 | " Check if line 'lnum' has more opening brackets than closing ones. |
| 160 | function 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 |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 170 | let open_{idx} = open_{idx} + 1 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 171 | else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 172 | let open_{idx - 1} = open_{idx - 1} - 1 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 173 | endif |
| 174 | endif |
| 175 | let pos = match(line, '[][(){}]', pos + 1) |
| 176 | endwhile |
| 177 | return (open_0 > 0) . (open_2 > 0) . (open_4 > 0) |
| 178 | endfunction |
| 179 | |
| 180 | function 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 |
| 183 | endfunction |
| 184 | |
| 185 | function 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 |
| 193 | endfunction |
| 194 | |
| 195 | " 3. GetRubyIndent Function {{{1 |
| 196 | " ========================= |
| 197 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 198 | function GetRubyIndent() |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 220 | if line[col-1]==')' && col('.') != col('$') - 1 |
| 221 | let ind = virtcol('.')-1 |
| 222 | else |
| 223 | let ind = indent(s:GetMSL(line('.'))) |
| 224 | endif |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 225 | endif |
| 226 | return ind |
| 227 | endif |
| 228 | |
| 229 | " If we have a =begin or =end set indent to first column. |
| 230 | if match(line, '^\s*\%(=begin\|=end\)$') != -1 |
| 231 | return 0 |
| 232 | endif |
| 233 | |
| 234 | " If we have a deindenting keyword, find its match and indent to its level. |
| 235 | " TODO: this is messy |
| 236 | if s:Match(v:lnum, s:ruby_deindent_keywords) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 237 | call cursor(v:lnum, 1) |
| 238 | if searchpair(s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'bW', |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 239 | \ s:end_skip_expr) > 0 |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 240 | let line = getline('.') |
| 241 | if strpart(line, 0, col('.') - 1) =~ '=\s*$' && |
| 242 | \ strpart(line, col('.') - 1, 2) !~ 'do' |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 243 | let ind = virtcol('.') - 1 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 244 | else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 245 | let ind = indent('.') |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 246 | endif |
| 247 | endif |
| 248 | return ind |
| 249 | endif |
| 250 | |
| 251 | " If we are in a multi-line string or line-comment, don't do anything to it. |
| 252 | if s:IsInStringOrDocumentation(v:lnum, matchend(line, '^\s*') + 1) |
| 253 | return indent('.') |
| 254 | endif |
| 255 | |
| 256 | " 3.3. Work on the previous line. {{{2 |
| 257 | " ------------------------------- |
| 258 | |
| 259 | " Find a non-blank, non-multi-line string line above the current line. |
| 260 | let lnum = s:PrevNonBlankNonString(v:lnum - 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 261 | |
| 262 | " At the start of the file use zero indent. |
| 263 | if lnum == 0 |
| 264 | return 0 |
| 265 | endif |
| 266 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 267 | " Set up variables for current line. |
| 268 | let line = getline(lnum) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 269 | let ind = indent(lnum) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 270 | |
| 271 | " If the previous line ended with a block opening, add a level of indent. |
| 272 | if s:Match(lnum, s:block_regex) |
| 273 | return indent(s:GetMSL(lnum)) + &sw |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 274 | endif |
| 275 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 276 | " If the previous line contained an opening bracket, and we are still in it, |
| 277 | " add indent depending on the bracket type. |
| 278 | if line =~ '[[({]' |
| 279 | let counts = s:LineHasOpeningBrackets(lnum) |
| 280 | if counts[0] == '1' && searchpair('(', '', ')', 'bW', s:skip_expr) > 0 |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 281 | if col('.') + 1 == col('$') |
| 282 | return ind + &sw |
| 283 | else |
| 284 | return virtcol('.') |
| 285 | endif |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 286 | elseif counts[1] == '1' || counts[2] == '1' |
| 287 | return ind + &sw |
| 288 | else |
| 289 | call cursor(v:lnum, vcol) |
| 290 | end |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 291 | endif |
| 292 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 293 | " If the previous line ended with an "end", match that "end"s beginning's |
| 294 | " indent. |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 295 | let col = s:Match(lnum, '\%(^\|[^.:@$]\)\<end\>\s*\%(#.*\)\=$') |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 296 | if col > 0 |
| 297 | call cursor(lnum, col) |
| 298 | if searchpair(s:end_start_regex, '', s:end_end_regex, 'bW', |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 299 | \ s:end_skip_expr) > 0 |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 300 | let n = line('.') |
| 301 | let ind = indent('.') |
| 302 | let msl = s:GetMSL(n) |
| 303 | if msl != n |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 304 | let ind = indent(msl) |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 305 | end |
| 306 | return ind |
| 307 | endif |
| 308 | end |
| 309 | |
| 310 | let col = s:Match(lnum, s:ruby_indent_keywords) |
| 311 | if col > 0 |
| 312 | call cursor(lnum, col) |
| 313 | let ind = virtcol('.') - 1 + &sw |
| 314 | " let ind = indent(lnum) + &sw |
| 315 | " TODO: make this better (we need to count them) (or, if a searchpair |
| 316 | " fails, we know that something is lacking an end and thus we indent a |
| 317 | " level |
| 318 | if s:Match(lnum, s:end_end_regex) |
| 319 | let ind = indent('.') |
| 320 | endif |
| 321 | return ind |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | endif |
| 323 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 324 | " 3.4. Work on the MSL line. {{{2 |
| 325 | " -------------------------- |
| 326 | |
| 327 | " Set up variables to use and search for MSL to the previous line. |
| 328 | let p_lnum = lnum |
| 329 | let lnum = s:GetMSL(lnum) |
| 330 | |
| 331 | " If the previous line wasn't a MSL and is continuation return its indent. |
| 332 | " TODO: the || s:IsInString() thing worries me a bit. |
| 333 | if p_lnum != lnum |
| 334 | if s:Match(p_lnum,s:continuation_regex)||s:IsInString(p_lnum,strlen(line)) |
| 335 | return ind |
| 336 | endif |
| 337 | endif |
| 338 | |
| 339 | " Set up more variables, now that we know we wasn't continuation bound. |
| 340 | let line = getline(lnum) |
| 341 | let msl_ind = indent(lnum) |
| 342 | |
| 343 | " If the MSL line had an indenting keyword in it, add a level of indent. |
| 344 | " TODO: this does not take into account contrived things such as |
| 345 | " module Foo; class Bar; end |
| 346 | if s:Match(lnum, s:ruby_indent_keywords) |
| 347 | let ind = msl_ind + &sw |
| 348 | if s:Match(lnum, s:end_end_regex) |
| 349 | let ind = ind - &sw |
| 350 | endif |
| 351 | return ind |
| 352 | endif |
| 353 | |
| 354 | " If the previous line ended with [*+/.-=], indent one extra level. |
| 355 | if s:Match(lnum, s:continuation_regex) |
| 356 | if lnum == p_lnum |
| 357 | let ind = msl_ind + &sw |
| 358 | else |
| 359 | let ind = msl_ind |
| 360 | endif |
| 361 | endif |
| 362 | |
| 363 | " }}}2 |
| 364 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 365 | return ind |
| 366 | endfunction |
| 367 | |
Bram Moolenaar | 60a795a | 2005-09-16 21:55:43 +0000 | [diff] [blame] | 368 | " }}}1 |
| 369 | |
| 370 | let &cpo = s:cpo_save |
| 371 | unlet s:cpo_save |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame] | 372 | |
| 373 | " vim:set sw=2 sts=2 ts=8 noet ff=unix: |