Add CopyOrSigint shortcut for Ctrl+C

This commit is contained in:
Rajas Paranjpe 2024-05-03 14:37:01 -07:00 committed by Jeremy Soller
parent ec58819a68
commit b7b3e942fa
2 changed files with 24 additions and 0 deletions

View file

@ -23,6 +23,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
// Standard key bindings
bind!([Ctrl, Shift], Key::Character("A".into()), SelectAll);
bind!([Ctrl, Shift], Key::Character("C".into()), Copy);
bind!([Ctrl], Key::Character("c".into()), CopyOrSigint);
bind!([Ctrl, Shift], Key::Character("F".into()), Find);
bind!([Ctrl, Shift], Key::Character("N".into()), WindowNew);
bind!([Ctrl, Shift], Key::Character("Q".into()), WindowClose);