runtime(ruby): Update for Vim 9.2 release
Commit:
https://github.com/vim/vim/commit/5ed37232bb23245f6d59fa928a7654d3933a2f0a
Author: Doug Kearns <[email protected]>
Date: Tue Feb 10 14:12:22 2026 +0100
runtime(ruby): Update for Vim 9.2 release
closes: https://github.com/vim/vim/issues/19316
Signed-off-by: Doug Kearns <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/runtime/compiler/eruby.vim b/runtime/compiler/eruby.vim
index 815d082f8..2f9f9aa71 100644
--- a/runtime/compiler/eruby.vim
+++ b/runtime/compiler/eruby.vim
@@ -2,7 +2,6 @@
" Language: eRuby
" Maintainer: Doug Kearns <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2024 Apr 03
if exists("current_compiler")
diff --git a/runtime/compiler/rake.vim b/runtime/compiler/rake.vim
index 5b3c7f409..55f7373af 100644
--- a/runtime/compiler/rake.vim
+++ b/runtime/compiler/rake.vim
@@ -2,7 +2,6 @@
" Language: Rake
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2018 Mar 02
" 2024 Apr 03 by The Vim Project (removed :CompilerSet
definition)
diff --git a/runtime/compiler/rspec.vim b/runtime/compiler/rspec.vim
index ee848f703..ab83acc8a 100644
--- a/runtime/compiler/rspec.vim
+++ b/runtime/compiler/rspec.vim
@@ -2,7 +2,6 @@
" Language: RSpec
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2018 Aug 07
" 2024 Apr 03 by The Vim Project (removed :CompilerSet
definition)
diff --git a/runtime/compiler/ruby.vim b/runtime/compiler/ruby.vim
index 70dff5bf2..2c34142f2 100644
--- a/runtime/compiler/ruby.vim
+++ b/runtime/compiler/ruby.vim
@@ -3,7 +3,6 @@
" Function: Syntax check and/or error reporting
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2019 Jan 06
" 2024 Apr 03 by The Vim Project (removed :CompilerSet
definition)
diff --git a/runtime/compiler/rubyunit.vim b/runtime/compiler/rubyunit.vim
index e59873fa2..2c6f53929 100644
--- a/runtime/compiler/rubyunit.vim
+++ b/runtime/compiler/rubyunit.vim
@@ -2,7 +2,6 @@
" Language: Test::Unit - Ruby Unit Testing Framework
" Maintainer: Doug Kearns <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2014 Mar 23
" 2024 Apr 03 by The Vim Project (removed :CompilerSet
definition)
diff --git a/runtime/ftplugin/eruby.vim b/runtime/ftplugin/eruby.vim
index b3e074aa2..b7a24c68c 100644
--- a/runtime/ftplugin/eruby.vim
+++ b/runtime/ftplugin/eruby.vim
@@ -2,7 +2,6 @@
" Language: eRuby
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2022 May 15
" 2024 Jan 14 by Vim Project (browsefilter)
" 2024 May 23 by Riley Bruins <[email protected]>
('commentstring')
diff --git a/runtime/indent/eruby.vim b/runtime/indent/eruby.vim
index 6ff15ab95..2caa152c6 100644
--- a/runtime/indent/eruby.vim
+++ b/runtime/indent/eruby.vim
@@ -2,7 +2,6 @@
" Language: eRuby
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2019 Jan 06
if exists("b:did_indent")
diff --git a/runtime/indent/ruby.vim b/runtime/indent/ruby.vim
index ea5a2a749..74e02ab2b 100644
--- a/runtime/indent/ruby.vim
+++ b/runtime/indent/ruby.vim
@@ -3,8 +3,7 @@
" Maintainer: Andrew Radev <[email protected]>
" Previous Maintainer: Nikolai Weibull <now at bitwi.se>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
-" Last Change: 2022 Jun 30
+" Last Change: 2023 Dec 22
" 0. Initialization {{{1
" =================
@@ -93,7 +92,14 @@ let s:ruby_indent_keywords =
\ '\<\%(if\|for\|while\|until\|case\|unless\|begin\):\@!\>'
" Def without an end clause: def method_call(...) = <expression>
-let s:ruby_endless_def = '\<def\s\+\%(\k\+\.\)\=\k\+[!?]\=\%((.*)\|\s\)\s*='
+let s:ruby_endless_def =
+ \ '\<def\s\+\%(\k\+\.\)\=\%(\k\+[=!?]\=\|' .
+ \ '[-+*/%&^<>~!]\|' .
+ \ '\*\*\|>>\|<<\|' .
+ \ '===\?\|\!=\|=\~\|\!\~\|' .
+ \ '<=>\|<=\|>=\|' .
+ \ '[-+!\~]@\|\[\]' .
+ \ '\)\%((.*)\|\s\)\s*='
" Regex used for words that, at the start of a line, remove a level of indent.
let s:ruby_deindent_keywords =
diff --git a/runtime/syntax/eruby.vim b/runtime/syntax/eruby.vim
index 3d1bf715d..469408752 100644
--- a/runtime/syntax/eruby.vim
+++ b/runtime/syntax/eruby.vim
@@ -2,7 +2,6 @@
" Language: eRuby
" Maintainer: Tim Pope <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2022 Mar 18
if exists("b:current_syntax")
diff --git a/runtime/syntax/ruby.vim b/runtime/syntax/ruby.vim
index e19d61a05..88aff7ddb 100644
--- a/runtime/syntax/ruby.vim
+++ b/runtime/syntax/ruby.vim
@@ -2,7 +2,6 @@
" Language: Ruby
" Maintainer: Doug Kearns <[email protected]>
" URL: https://github.com/vim-ruby/vim-ruby
-" Release Coordinator: Doug Kearns <[email protected]>
" Last Change: 2023 Mar 16
" ----------------------------------------------------------------------------
"
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1vpna7-0059EX-Pf%40256bit.org.