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,7 +46,8 @@ module IRB # :nodoc:
]
@EXTEND_COMMANDS = [
[:irb_current_working_workspace, :CurrentWorkingWorkspace, "irb/cmd/chws",
[
:irb_current_working_workspace, :CurrentWorkingWorkspace, "irb/cmd/chws",
[:irb_print_working_workspace, OVERRIDE_ALL],
[:irb_cwws, OVERRIDE_ALL],
[:irb_pwws, OVERRIDE_ALL],
@ -57,47 +58,68 @@ module IRB # :nodoc:
[:irb_cwb, OVERRIDE_ALL],
[:irb_pwb, OVERRIDE_ALL],
],
[:irb_change_workspace, :ChangeWorkspace, "irb/cmd/chws",
[
:irb_change_workspace, :ChangeWorkspace, "irb/cmd/chws",
[:irb_chws, OVERRIDE_ALL],
[:irb_cws, OVERRIDE_ALL],
[:chws, NO_OVERRIDE],
[:cws, NO_OVERRIDE],
[:irb_change_binding, OVERRIDE_ALL],
[:irb_cb, OVERRIDE_ALL],
[:cb, NO_OVERRIDE]],
[:cb, NO_OVERRIDE],
],
[:irb_workspaces, :Workspaces, "irb/cmd/pushws",
[
:irb_workspaces, :Workspaces, "irb/cmd/pushws",
[:workspaces, NO_OVERRIDE],
[:irb_bindings, OVERRIDE_ALL],
[:bindings, NO_OVERRIDE]],
[:irb_push_workspace, :PushWorkspace, "irb/cmd/pushws",
[:bindings, NO_OVERRIDE],
],
[
:irb_push_workspace, :PushWorkspace, "irb/cmd/pushws",
[:irb_pushws, OVERRIDE_ALL],
[:pushws, NO_OVERRIDE],
[:irb_push_binding, OVERRIDE_ALL],
[:irb_pushb, OVERRIDE_ALL],
[:pushb, NO_OVERRIDE]],
[:irb_pop_workspace, :PopWorkspace, "irb/cmd/pushws",
[:pushb, 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]],
[:popb, NO_OVERRIDE],
],
[:irb_load, :Load, "irb/cmd/load"],
[:irb_require, :Require, "irb/cmd/load"],
[:irb_source, :Source, "irb/cmd/load",
[:source, NO_OVERRIDE]],
[
:irb_load, :Load, "irb/cmd/load"],
[
: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",
[:jobs, NO_OVERRIDE]],
[:irb_fg, :Foreground, "irb/cmd/subirb",
[:fg, NO_OVERRIDE]],
[:irb_kill, :Kill, "irb/cmd/subirb",
[:kill, OVERRIDE_PRIVATE_ONLY]],
[
:irb, :IrbCommand, "irb/cmd/subirb"],
[
:irb_jobs, :Jobs, "irb/cmd/subirb",
[:jobs, NO_OVERRIDE],
],
[
: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],
],
]