cloudcmd v14.4.0
User Menu Run Selected
To fresh version of Cloud Commander
was added new User Menu
feature: now you can chose what items
to run without showing select dialog
. Here is how it's look like in .cloudcmd.menu.js
:
const RENAME_FILE = 'Rename file';
export default {
__settings: {
select: [
RENAME_FILE,
],
run: true,
},
[`F2 - ${RENAME_FILE}`]: async ({DOM}) => {
await DOM.renameCurrent();
},
}
What you can see here, is Rename File
will be run
instead of showing user menu dialog
. That's right, now you can configure Cloud Commander
to work in the same way, it worked a couple releases a go, and much more :). You can customize F2
button in a way you like.
How to make things work?
Open home
directory, press F2
and choose Create User Menu file
, and then change run: false
into run: true
.
That's all for today, folks :), if you have any questions, ideas or troubles create an issue.
feature
- (user-menu) add ability to run selected items without showing dialog