1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/gitui/key_bindings.ron

35 lines
1.3 KiB
Text
Raw Normal View History

2022-11-19 18:03:50 +00:00
(
2024-02-22 22:07:44 +00:00
open_help: Some(( code: F(1), modifiers: "")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
move_left: Some(( code: Char('h'), modifiers: "")),
move_right: Some(( code: Char('l'), modifiers: "")),
move_up: Some(( code: Char('k'), modifiers: "")),
move_down: Some(( code: Char('j'), modifiers: "")),
popup_up: Some(( code: Char('p'), modifiers: "CONTROL")),
popup_down: Some(( code: Char('n'), modifiers: "CONTROL")),
page_up: Some(( code: Char('b'), modifiers: "CONTROL")),
page_down: Some(( code: Char('f'), modifiers: "CONTROL")),
home: Some(( code: Char('g'), modifiers: "")),
end: Some(( code: Char('G'), modifiers: "SHIFT")),
shift_up: Some(( code: Char('K'), modifiers: "SHIFT")),
shift_down: Some(( code: Char('J'), modifiers: "SHIFT")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
edit_file: Some(( code: Char('I'), modifiers: "SHIFT")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
status_reset_item: Some(( code: Char('U'), modifiers: "SHIFT")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
diff_reset_lines: Some(( code: Char('u'), modifiers: "")),
diff_stage_lines: Some(( code: Char('s'), modifiers: "")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
stashing_save: Some(( code: Char('w'), modifiers: "")),
stashing_toggle_index: Some(( code: Char('m'), modifiers: "")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
stash_open: Some(( code: Char('l'), modifiers: "")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
abort_merge: Some(( code: Char('M'), modifiers: "SHIFT")),
2022-11-19 18:03:50 +00:00
2024-02-22 22:07:44 +00:00
commit: Some(( code: Enter, modifiers: "")),
newline: Some(( code: Enter, modifiers: "SHIFT")),
)