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

ruby-changes:67351

From: aycabta <ko1@a...>
Date: Mon, 30 Aug 2021 02:37:42 +0900 (JST)
Subject: [ruby-changes:67351] 62555d7ae6 (master): [ruby/reline] Set autocompletion is false by default

https://git.ruby-lang.org/ruby.git/commit/?id=62555d7ae6

From 62555d7ae602878fc0bf25a0847936df4620a144 Mon Sep 17 00:00:00 2001
From: aycabta <aycabta@g...>
Date: Mon, 30 Aug 2021 01:49:41 +0900
Subject: [ruby/reline] Set autocompletion is false by default

For compatibility with ext/readline.

https://github.com/ruby/reline/commit/13d9b936bc
---
 lib/reline/config.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/reline/config.rb b/lib/reline/config.rb
index ac2a365..d859aeb 100644
--- a/lib/reline/config.rb
+++ b/lib/reline/config.rb
@@ -65,7 +65,7 @@ class Reline::Config https://github.com/ruby/ruby/blob/trunk/lib/reline/config.rb#L65
     @history_size = -1 # unlimited
     @keyseq_timeout = 500
     @test_mode = false
-    @autocompletion = true
+    @autocompletion = false
   end
 
   def reset
-- 
cgit v1.1


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

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