1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

go through local config for command set keys.

read from whatever 'Default#commands' is.
This commit is contained in:
Robert Gleeson 2014-02-03 22:35:56 +01:00
parent c7eed553ff
commit c283e644b5

View file

@ -33,7 +33,7 @@ class Pry::Config::Default
:control_d_handler => proc { Pry::DEFAULT_CONTROL_D_HANDLER },
:memory_size => proc { 100 },
:extra_sticky_locals => proc { {} },
:command_completions => proc { proc { Pry.commands.commands.keys } },
:command_completions => proc { proc { commands.commands.keys } },
:file_completions => proc { proc { Dir["."] } },
:completer => proc { lazy_completer }
}