feature(key) add ability to pack files with Alt + F5

This commit is contained in:
coderaiser 2017-09-04 09:59:22 +03:00
parent ee434d9376
commit 8bf1ea1d4a
2 changed files with 3 additions and 0 deletions

View file

@ -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

View 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');