mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-22 23:50:33 +00:00
feture(key) add ability to extract archives with Alt + F9
This commit is contained in:
parent
3a4ace4041
commit
ff31fcbae6
2 changed files with 5 additions and 1 deletions
1
HELP.md
1
HELP.md
|
|
@ -142,6 +142,7 @@ Hot keys
|
|||
| `F8`, `Delete` | remove
|
||||
| `Shift + Delete` | remove without prompt
|
||||
| `F9` | menu
|
||||
| `Alt` + `F9` | extract
|
||||
| `F10` | config
|
||||
| `*` | select/unselect all
|
||||
| `+` | expand selection
|
||||
|
|
|
|||
|
|
@ -343,7 +343,10 @@ function KeyProto() {
|
|||
break;
|
||||
|
||||
case Key.F9:
|
||||
CloudCmd.Menu.show();
|
||||
if (alt)
|
||||
Operation.show('extract');
|
||||
else
|
||||
CloudCmd.Menu.show();
|
||||
event.preventDefault();
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue