CopyQ
CopyQ copied to clipboard
Shortcut key for hide/show tabs
Can you please add option add shortcut key for hide/show tabs?
Thanks
The following command can provide this function. Just modify the shortcut keys according to your needs.
[Command]
Name=Toggle tabs
Command="
copyq:
var on = config(\"hide_tabs\") === \"true\"
config(\"hide_tabs\", !on)
"
InMenu=true
Icon=\xf15b
Shortcut=f11
The following command can provide this function. Just modify the shortcut keys according to your needs.
[Command] Name=Toggle tabs Command=" copyq: var on = config(\"hide_tabs\") === \"true\" config(\"hide_tabs\", !on) " InMenu=true Icon=\xf15b Shortcut=f11
Thanks!!