Rather than using the dropdown or tabs for lister styles, I'd like to make two buttons, one for dual vertical lister and one for Explorer, since those are the 2 styles I switch between 99% of the time. Is this possible? If so, how?
Thx!
The 2 buttons you want are:
Prefs STYLE=Explorer
Prefs STYLE="Dual Vertical"
Not sure if there is a way to make 1 button which toggles the two. I tried that and failed. Someone else might know how to though. You could also make it a three button so LMB does one and RMB does the other.
The following function will toggle:
@ifset:dual=on
prefs style=explorer
@ifset:else
prefs style="dual vertical"
Another approach, using SHIFT and CTRL key modifiers..
@keydown:shift
Prefs STYLE="Dual Vertical"
@keydown:ctrl
Prefs STYLE="Explorer"
@keydown:none
Prefs STYLE=^PREV
Regards, AB
You guys are amazing! Thank you so much!