Replies: 2 comments 2 replies
-
Please tell me how to activate the feature "Store text selected using mouse". I'm very much interested in such type of feature. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
-
The following command saves the mouse selections in a separate tab (here is how to add the command to CopyQ): [Command]
Command="
const selectionTab = 'Selections';
var onClipboardChanged_ = onClipboardChanged;
onClipboardChanged = function() {
if (!isClipboard()) {
setData(mimeOutputTab, selectionTab);
}
onClipboardChanged_();
}"
Icon=\xe185
IsScript=true
Name=Tab for Primary Selection |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently I don't use the "Store text selected using mouse" option because it severely pollutes my clipboard history. However, it would be extremely handy if I could keep a separate smaller tab with like the latest 50 items that ended up in the primary selection.
I read the API documentation and couldn't find any way of filtering these items with commands. Is this not possible?
Beta Was this translation helpful? Give feedback.
All reactions