aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/ruby.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-29 01:02:22 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-29 01:03:42 +0200
commit53419673154a98b705cfa80590099a247cc9df49 (patch)
tree3eb512ee1a938f9063a59660a9b765cdd68ea3f2 /runtime/indent/ruby.vim
parent60e68f309675c353b0453d6a1caa21c95caf97c2 (diff)
downloadrneovim-53419673154a98b705cfa80590099a247cc9df49.tar.gz
rneovim-53419673154a98b705cfa80590099a247cc9df49.tar.bz2
rneovim-53419673154a98b705cfa80590099a247cc9df49.zip
vim-patch:4575876dc865
Updated runtime files. https://github.com/vim/vim/commit/4575876dc865d4160f20d61bd822fbe7cafbec41
Diffstat (limited to 'runtime/indent/ruby.vim')
-rw-r--r--runtime/indent/ruby.vim7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/indent/ruby.vim b/runtime/indent/ruby.vim
index 4f87ec7823..a97f4828d6 100644
--- a/runtime/indent/ruby.vim
+++ b/runtime/indent/ruby.vim
@@ -92,11 +92,12 @@ let s:end_skip_expr = s:skip_expr .
\ ' && getline(".") =~ "^\\s*\\<\\(while\\|until\\|for\\):\\@!\\>")'
" Regex that defines continuation lines, not including (, {, or [.
-let s:non_bracket_continuation_regex = '\%([\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$'
+let s:non_bracket_continuation_regex =
+ \ '\%([\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|:\@<![^[:alnum:]:][|&?]\|||\|&&\)\s*\%(#.*\)\=$'
" Regex that defines continuation lines.
let s:continuation_regex =
- \ '\%(%\@<![({[\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\)\s*\%(#.*\)\=$'
+ \ '\%(%\@<![({[\\.,:*/%+]\|\<and\|\<or\|\%(<%\)\@<![=-]\|:\@<![^[:alnum:]:][|&?]\|||\|&&\)\s*\%(#.*\)\=$'
" Regex that defines continuable keywords
let s:continuable_regex =
@@ -389,7 +390,7 @@ function! s:FindContainingClass()
call setpos('.', saved_position)
return found_lnum
endif
- endif
+ endwhile
call setpos('.', saved_position)
return 0