mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-25 17:04:16 +00:00
feature(key) add ability to rename file with Shift + F6
This commit is contained in:
parent
eb4f7c0d7c
commit
ffbb96301e
2 changed files with 3 additions and 0 deletions
1
HELP.md
1
HELP.md
|
|
@ -172,6 +172,7 @@ Hot keys
|
|||
| `F5` | copy
|
||||
| `Alt` + `F5` | pack
|
||||
| `F6` | rename/move
|
||||
| `Shift` + `F6` | rename current file
|
||||
| `F7` | new directory
|
||||
| `Shift + F7` | new file
|
||||
| `F8`, `Delete` | remove
|
||||
|
|
|
|||
|
|
@ -228,6 +228,8 @@ function KeyProto() {
|
|||
case Key.F6:
|
||||
if (ctrlMeta)
|
||||
CloudCmd.sortPanel('size');
|
||||
else if (shift)
|
||||
DOM.renameCurrent(current);
|
||||
else
|
||||
Operation.show('move');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue