Implement Save as, fixes #127
This commit is contained in:
parent
9da0b4575e
commit
76c659fb21
4 changed files with 57 additions and 19 deletions
|
|
@ -73,6 +73,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
|
|||
bind!([Ctrl], Key::Character("q".into()), Quit);
|
||||
bind!([Ctrl, Shift], Key::Character("Z".into()), Redo);
|
||||
bind!([Ctrl], Key::Character("s".into()), Save);
|
||||
bind!([Ctrl, Shift], Key::Character("S".into()), SaveAsDialog);
|
||||
bind!([Ctrl], Key::Character("a".into()), SelectAll);
|
||||
bind!([Ctrl], Key::Character("1".into()), TabActivate0);
|
||||
bind!([Ctrl], Key::Character("2".into()), TabActivate1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue