Activate primary "clipboard" tab after pasting from other tab #1979
-
I have this workflow of using other tabs which store static content I need to frequently paste. I checked the configuration and settings but I couldn't find a built in way to have Copyq switch back to the main tab after pasting from any other tab. Would this need a global command to have such functionality? Any pointers would be appreciated. :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The following command copies the selected item (on item activation), hides the main window, pastes the clipboard and switches back to the first tab (here is how to add the command to CopyQ): [Command]
Command="
copyq:
select(currentItem())
hide()
paste()
setCurrentTab(tab()[0])"
Icon=\xf362
InMenu=true
Name=Back to Primary Tab
Shortcut=return, enter |
Beta Was this translation helpful? Give feedback.
The following command copies the selected item (on item activation), hides the main window, pastes the clipboard and switches back to the first tab (here is how to add the command to CopyQ):