[前][次][番号順一覧][スレッド一覧]

ruby-changes:73861

From: Imir <ko1@a...>
Date: Wed, 5 Oct 2022 19:22:25 +0900 (JST)
Subject: [ruby-changes:73861] 83a6213f31 (master): [ruby/irb] Fixed sort of variables in completion

https://git.ruby-lang.org/ruby.git/commit/?id=83a6213f31

From 83a6213f31016e16bf43613beb4d058339ca9350 Mon Sep 17 00:00:00 2001
From: Imir Kiyamov <makketagg@g...>
Date: Mon, 18 Jul 2022 19:45:38 +0300
Subject: [ruby/irb] Fixed sort of variables in completion

https://github.com/ruby/irb/commit/5842888255
---
 lib/irb/completion.rb       |  4 ++--
 test/irb/test_completion.rb | 11 +++++++++++
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/lib/irb/completion.rb b/lib/irb/completion.rb
index 0e34fc63aa..35767feeb7 100644
--- a/lib/irb/completion.rb
+++ b/lib/irb/completion.rb
@@ -373,7 +373,7 @@ module IRB https://github.com/ruby/ruby/blob/trunk/lib/irb/completion.rb#L373
         if doc_namespace
           "String.#{candidates.find{ |i| i == message }}"
         else
-          select_message(receiver, message, candidates)
+          select_message(receiver, message, candidates.sort)
         end
 
       else
@@ -390,7 +390,7 @@ module IRB https://github.com/ruby/ruby/blob/trunk/lib/irb/completion.rb#L390
         else
           candidates = (bind.eval_methods | bind.eval_private_methods | bind.local_variables | bind.eval_instance_variables | bind.eval_class_constants).collect{|m| m.to_s}
           candidates |= ReservedWords
-          candidates.grep(/^#{Regexp.quote(input)}/)
+          candidates.grep(/^#{Regexp.quote(input)}/).sort
         end
       end
     end
diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb
index fb10870820..8d7476b8f5 100644
--- a/test/irb/test_completion.rb
+++ b/test/irb/test_completion.rb
@@ -208,5 +208,16 @@ module TestIRB https://github.com/ruby/ruby/blob/trunk/test/irb/test_completion.rb#L208
       assert_include(IRB::InputCompletor.retrieve_completion_data("String.new", bind: binding), "String.new")
       assert_equal(IRB::InputCompletor.retrieve_completion_data("String.new", bind: binding, doc_namespace: true), "String.new")
     end
+
+    def test_complete_sort_variables
+      xzy, xzy_1, xzy2 = '', '', ''
+
+      xzy.clear
+      xzy_1.clear
+      xzy2.clear
+
+      candidates = IRB::InputCompletor.retrieve_completion_data("xz", bind: binding, doc_namespace: false)
+      assert_equal(candidates, %w[xzy xzy2 xzy_1])
+    end
   end
 end
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]