CopyQ icon indicating copy to clipboard operation
CopyQ copied to clipboard

Shortcut key for hide/show tabs

Open Alexnoj opened this issue 2 years ago • 2 comments

Can you please add option add shortcut key for hide/show tabs?

Thanks

Alexnoj avatar Jul 15 '23 21:07 Alexnoj

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

GFDGIT avatar Jul 20 '23 07:07 GFDGIT

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!!

Alexnoj avatar Aug 01 '23 09:08 Alexnoj