Skip to content

Commit

Permalink
Remove the create_cursors_around conflicting keybind
Browse files Browse the repository at this point in the history
  • Loading branch information
focus-editor committed Oct 23, 2024
1 parent 35c268f commit 0eb0b86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/default.focus-config
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Ctrl-Shift-N create_new_file_on_the_side

Alt-Shift-ArrowUp create_cursor_above
Alt-Shift-ArrowDown create_cursor_below
Alt-Shift-ArrowLeft create_cursors_around

Alt-Shift-ArrowRight select_word_or_create_another_cursor
Alt-A align_cursors

Expand Down
2 changes: 1 addition & 1 deletion config/default_macos.focus-config
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Cmd-Shift-N create_new_file_on_the_side

Opt-Shift-ArrowUp create_cursor_above
Opt-Shift-ArrowDown create_cursor_below
Opt-Shift-ArrowLeft create_cursors_around

Opt-Shift-ArrowRight select_word_or_create_another_cursor
Opt-Cmd-A align_cursors

Expand Down
5 changes: 1 addition & 4 deletions src/config_migrator.jai
Original file line number Diff line number Diff line change
Expand Up @@ -604,9 +604,8 @@ ADDED_KEYBINDS :: Added_Keybind.[
.{ 3, "common", "go_to_previous_build_error", "Shift-F8", "Shift-F8" },
.{ 3, "common", "go_to_previous_build_error_on_the_side", "Shift-Ctrl-F8", "Shift-Cmd-F8" },

.{ 5, "common", "jump_to_matching_bracket", "{Shift}-Ctrl-M", "{Shift}-Cmd-M" },
.{ 5, "common", "jump_to_matching_bracket", "{Shift}-Ctrl-M", "{Shift}-Cmd-M" },

.{ 7, "editors", "create_cursors_around", "Alt-Shift-ArrowLeft", "Opt-Shift-ArrowLeft" },
.{ 7, "editors", "change_case_cycle", "Ctrl-U", "Cmd-U" },

.{ 9, "editors", "revert_select_word_or_create_another_cursor", "Ctrl-R", "Cmd-R" },
Expand Down Expand Up @@ -1814,7 +1813,6 @@ Ctrl-Shift-A select_all_occurrences
Alt-Shift-I add_cursors_to_line_ends
Alt-Shift-Ctrl-I add_cursors_to_line_starts
Alt-A align_cursors
Alt-Shift-ArrowLeft create_cursors_around
Ctrl-U change_case_cycle
Ctrl-R revert_select_word_or_create_another_cursor
Ctrl-Y move_selection_to_next_word
Expand Down Expand Up @@ -1896,7 +1894,6 @@ Ctrl-D select_word_or_create_another_cursor
Ctrl-Shift-A select_all_occurrences

# Added after migration to version [!latest!]
Alt-Shift-ArrowLeft create_cursors_around
Ctrl-U change_case_cycle
Ctrl-R revert_select_word_or_create_another_cursor
Ctrl-Y move_selection_to_next_word
Expand Down

0 comments on commit 0eb0b86

Please sign in to comment.