* lib/irb/completion.rb: fixed broken completion list with
String including spaces. Contributed from @dunric. [fix GH-465] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
09ed8ca532
commit
087d1d2749
@ -1,3 +1,8 @@
|
||||
Wed Aug 13 11:08:55 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* lib/irb/completion.rb: fixed broken completion list with
|
||||
String including spaces. Contributed from @dunric. [fix GH-465]
|
||||
|
||||
Wed Aug 13 00:07:01 2014 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole.c: separate WIN32OLE_PARAM src from win32ole.c
|
||||
|
@ -222,7 +222,7 @@ module IRB
|
||||
end
|
||||
|
||||
if Readline.respond_to?("basic_word_break_characters=")
|
||||
Readline.basic_word_break_characters= " \t\n`><=;|&{("
|
||||
Readline.basic_word_break_characters= "\t\n\\`><=;|&{("
|
||||
end
|
||||
Readline.completion_append_character = nil
|
||||
Readline.completion_proc = IRB::InputCompletor::CompletionProc
|
||||
|
Loading…
x
Reference in New Issue
Block a user