Please tell me how to set shortcut keys for folder, flat display, (grouped, mixed, mixed (no folder), off), and click to switch in turn. If you need to add a new command, how to write the command?
1 Like
You can add hotkeys directly to the buttons:
A button or hotkey like this will let you toggle flat view:
@if:Set FLATVIEW=on
Set FLATVIEW=off
@if:else
Set FLATVIEW=on,mixednofolders
Thanks, I hope to switch these 4 modes by setting a shortcut key. How do I write the set command?
This button or hotkey will step through the four flatview modes:
@if:Set FLATVIEW=On,Grouped
Set FLATVIEW=On,Mixed
@if:Set FLATVIEW=On,Mixed
Set FLATVIEW=On,MixedNoFolders
@if:Set FLATVIEW=On,MixedNoFolders
Set FLATVIEW=Off
@if:Set FLATVIEW=Off
Set FLATVIEW=On,Grouped
1 Like
Thank you very much.