fix: add alt_clipboard bindings
This commit is contained in:
parent
6ce200c84b
commit
eae9127fbe
1 changed files with 3 additions and 0 deletions
|
|
@ -26,6 +26,9 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
|
|||
bind!([Ctrl], Key::Character("f".into()), Find);
|
||||
bind!([Ctrl], Key::Character("h".into()), FindAndReplace);
|
||||
bind!([Ctrl], Key::Character("v".into()), Paste);
|
||||
bind!([Shift], Key::Named(Named::Insert), Paste);
|
||||
bind!([Ctrl], Key::Named(Named::Insert), Copy);
|
||||
bind!([Shift], Key::Named(Named::Delete), Cut);
|
||||
bind!([Ctrl], Key::Character("t".into()), NewFile);
|
||||
bind!([Ctrl], Key::Character("n".into()), NewWindow);
|
||||
bind!([Ctrl], Key::Character("o".into()), OpenFileDialog);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue