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

Adjusted indents and supplied last commas

Fixed unmatched indent of the closing bracket for
`:irb_current_working_workspace`, and adjusted following elements.
This commit is contained in:
Nobuyoshi Nakada 2019-08-28 01:07:27 +09:00 committed by aycabta
parent 2b55df7315
commit a506b7f35a

View file

@ -46,58 +46,80 @@ module IRB # :nodoc:
] ]
@EXTEND_COMMANDS = [ @EXTEND_COMMANDS = [
[:irb_current_working_workspace, :CurrentWorkingWorkspace, "irb/cmd/chws", [
[:irb_print_working_workspace, OVERRIDE_ALL], :irb_current_working_workspace, :CurrentWorkingWorkspace, "irb/cmd/chws",
[:irb_cwws, OVERRIDE_ALL], [:irb_print_working_workspace, OVERRIDE_ALL],
[:irb_pwws, OVERRIDE_ALL], [:irb_cwws, OVERRIDE_ALL],
[:cwws, NO_OVERRIDE], [:irb_pwws, OVERRIDE_ALL],
[:pwws, NO_OVERRIDE], [:cwws, NO_OVERRIDE],
[:irb_current_working_binding, OVERRIDE_ALL], [:pwws, NO_OVERRIDE],
[:irb_print_working_binding, OVERRIDE_ALL], [:irb_current_working_binding, OVERRIDE_ALL],
[:irb_cwb, OVERRIDE_ALL], [:irb_print_working_binding, OVERRIDE_ALL],
[:irb_pwb, OVERRIDE_ALL], [:irb_cwb, OVERRIDE_ALL],
], [:irb_pwb, OVERRIDE_ALL],
[:irb_change_workspace, :ChangeWorkspace, "irb/cmd/chws", ],
[:irb_chws, OVERRIDE_ALL], [
[:irb_cws, OVERRIDE_ALL], :irb_change_workspace, :ChangeWorkspace, "irb/cmd/chws",
[:chws, NO_OVERRIDE], [:irb_chws, OVERRIDE_ALL],
[:cws, NO_OVERRIDE], [:irb_cws, OVERRIDE_ALL],
[:irb_change_binding, OVERRIDE_ALL], [:chws, NO_OVERRIDE],
[:irb_cb, OVERRIDE_ALL], [:cws, NO_OVERRIDE],
[:cb, NO_OVERRIDE]], [:irb_change_binding, OVERRIDE_ALL],
[:irb_cb, OVERRIDE_ALL],
[:cb, NO_OVERRIDE],
],
[:irb_workspaces, :Workspaces, "irb/cmd/pushws", [
[:workspaces, NO_OVERRIDE], :irb_workspaces, :Workspaces, "irb/cmd/pushws",
[:irb_bindings, OVERRIDE_ALL], [:workspaces, NO_OVERRIDE],
[:bindings, NO_OVERRIDE]], [:irb_bindings, OVERRIDE_ALL],
[:irb_push_workspace, :PushWorkspace, "irb/cmd/pushws", [:bindings, NO_OVERRIDE],
[:irb_pushws, OVERRIDE_ALL], ],
[:pushws, NO_OVERRIDE], [
[:irb_push_binding, OVERRIDE_ALL], :irb_push_workspace, :PushWorkspace, "irb/cmd/pushws",
[:irb_pushb, OVERRIDE_ALL], [:irb_pushws, OVERRIDE_ALL],
[:pushb, NO_OVERRIDE]], [:pushws, NO_OVERRIDE],
[:irb_pop_workspace, :PopWorkspace, "irb/cmd/pushws", [:irb_push_binding, OVERRIDE_ALL],
[:irb_popws, OVERRIDE_ALL], [:irb_pushb, OVERRIDE_ALL],
[:popws, NO_OVERRIDE], [:pushb, NO_OVERRIDE],
[:irb_pop_binding, OVERRIDE_ALL], ],
[:irb_popb, OVERRIDE_ALL], [
[:popb, NO_OVERRIDE]], :irb_pop_workspace, :PopWorkspace, "irb/cmd/pushws",
[:irb_popws, OVERRIDE_ALL],
[:popws, NO_OVERRIDE],
[:irb_pop_binding, OVERRIDE_ALL],
[:irb_popb, OVERRIDE_ALL],
[:popb, NO_OVERRIDE],
],
[:irb_load, :Load, "irb/cmd/load"], [
[:irb_require, :Require, "irb/cmd/load"], :irb_load, :Load, "irb/cmd/load"],
[:irb_source, :Source, "irb/cmd/load", [
[:source, NO_OVERRIDE]], :irb_require, :Require, "irb/cmd/load"],
[
:irb_source, :Source, "irb/cmd/load",
[:source, NO_OVERRIDE],
],
[:irb, :IrbCommand, "irb/cmd/subirb"], [
[:irb_jobs, :Jobs, "irb/cmd/subirb", :irb, :IrbCommand, "irb/cmd/subirb"],
[:jobs, NO_OVERRIDE]], [
[:irb_fg, :Foreground, "irb/cmd/subirb", :irb_jobs, :Jobs, "irb/cmd/subirb",
[:fg, NO_OVERRIDE]], [:jobs, NO_OVERRIDE],
[:irb_kill, :Kill, "irb/cmd/subirb", ],
[:kill, OVERRIDE_PRIVATE_ONLY]], [
:irb_fg, :Foreground, "irb/cmd/subirb",
[:fg, NO_OVERRIDE],
],
[
:irb_kill, :Kill, "irb/cmd/subirb",
[:kill, OVERRIDE_PRIVATE_ONLY],
],
[:irb_help, :Help, "irb/cmd/help", [
[:help, NO_OVERRIDE]], :irb_help, :Help, "irb/cmd/help",
[:help, NO_OVERRIDE],
],
] ]