mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
feature(key) add ability to pack files with Alt + F5
This commit is contained in:
parent
ee434d9376
commit
8bf1ea1d4a
2 changed files with 3 additions and 0 deletions
1
HELP.md
1
HELP.md
|
|
@ -135,6 +135,7 @@ Hot keys
|
|||
| `F4` | edit
|
||||
| `Shift + F4` | edit in `vim` mode
|
||||
| `F5` | copy
|
||||
| `Alt` + `F5` | pack
|
||||
| `F6` | rename/move
|
||||
| `F7` | new directory
|
||||
| `Shift + F7` | new file
|
||||
|
|
|
|||
|
|
@ -311,6 +311,8 @@ function KeyProto() {
|
|||
case Key.F5:
|
||||
if (ctrlMeta)
|
||||
CloudCmd.sortPanel('date');
|
||||
else if (alt)
|
||||
Operation.show('pack');
|
||||
else
|
||||
Operation.show('copy');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue