Skip to content

Commit

Permalink
Fix typo in LineEdit (#25255)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno authored and rfourquet committed Dec 23, 2017
1 parent 058716e commit 2d1d6d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/repl/LineEdit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ const COMMAND_GROUPS =
:replacement => [:edit_yank_pop, :edit_transpose_chars, :edit_transpose_words,
:edit_upper_case, :edit_lower_case, :edit_title_case, :edit_indent,
:edit_transpose_lines_up!, :edit_transpose_lines_down!],
:copy => [:edit_copy_region])
:misc => [:complete_line, :setmark, :edit_undo!, :edit_redo!],
:copy => [:edit_copy_region],
:misc => [:complete_line, :setmark, :edit_undo!, :edit_redo!])

const COMMAND_GROUP = Dict(command=>group for (group, commands) in COMMAND_GROUPS for command in commands)
command_group(command::Symbol) = get(COMMAND_GROUP, command, :nogroup)
Expand Down

0 comments on commit 2d1d6d0

Please sign in to comment.