[ruby-cvs:79072] 439e1ccd08 (master): Complete indented and quoted string correctly
"aycabta" <[email protected]> Mon, 6 Jan 2020 01:24:26 +0900 (JST)
| Newsgroups | gmane.comp.lang.ruby.cvs |
|---|---|
| Message-ID | <[email protected]> |
aycabta 2020-01-06 01:20:24 +0900 (Mon, 06 Jan 2020)
New Revision: 439e1ccd08
https://github.com/ruby/ruby/commit/439e1ccd08
Log:
Complete indented and quoted string correctly
=
def foo
''.upca[TAB]
=
This will be completed to be:
=
def foo
''.upcase
=
The indent was gone. This commit fixes the bug.
Modified files:
lib/reline/line_editor.rb
test/reline/test_key_actor_emacs.rb=