Skip to content

Commit

Permalink
Add newlines for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
aycabta committed Sep 30, 2021
1 parent 179c52b commit 2a60aac
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion test/reline/yamatanooroti/multiline_repl
Expand Up @@ -91,7 +91,28 @@ opt.on('--autocomplete') {
opt.on('--autocomplete-long') {
Reline.autocompletion = true
Reline.completion_proc = lambda { |target, preposing = nil, postposing = nil|
%w{String Struct Symbol StopIteration SystemCallError SystemExit SystemStackError ScriptError SyntaxError Signal SizedQueue Set SecureRandom Socket StringIO StringScanner Shellwords Syslog Singleton SDBM}.select{ |c| c.start_with?(target) }
%w{
String
Struct
Symbol
StopIteration
SystemCallError
SystemExit
SystemStackError
ScriptError
SyntaxError
Signal
SizedQueue
Set
SecureRandom
Socket
StringIO
StringScanner
Shellwords
Syslog
Singleton
SDBM
}.select{ |c| c.start_with?(target) }
}
}
opt.parse!(ARGV)
Expand Down

0 comments on commit 2a60aac

Please sign in to comment.