Skip to content

Commit

Permalink
Update default keymap
Browse files Browse the repository at this point in the history
  • Loading branch information
rongyi committed Oct 29, 2024
1 parent 20ecbf2 commit 9db73b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helix-term/src/keymap/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {


// still don't know the usage, so give those key to change
// "s" => select_regex,
"C-s" => select_regex,
"A-s" => split_selection_on_newline,
"A-minus" => merge_selections,
"A-_" => merge_consecutive_selections,
Expand All @@ -100,7 +100,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
"A-b" => move_parent_node_start,
"A-a" => select_all_siblings,

"%" => select_all,
// "%" => select_all,
"x" => extend_line_below,
"X" => extend_to_line_bounds,
"A-x" => shrink_to_line_bounds,
Expand Down Expand Up @@ -223,7 +223,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {

"C-i" | "tab" => jump_forward, // tab == <C-i>
"C-o" => jump_backward,
"C-s" => save_selection,
// "C-x C-s" => save_selection,

"space" | "," => { "Leader"
"F" => file_picker,
Expand Down

0 comments on commit 9db73b0

Please sign in to comment.