Add CopyOrSigint shortcut for Ctrl+C
This commit is contained in:
parent
ec58819a68
commit
b7b3e942fa
2 changed files with 24 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue