How to toggle or turn off text selection being sent to the clipboard

12,614

Solution 1

First a misconception:

any selected text is immediately sent to the clipboard

Actually text is never "sent" anywhere until it is requested by a receiving application. When you select text, the application only claims the selection, which means basically that it raises a flag to say that from now on it owns it.

Now on to your question:

In X11 there can be multiple selections. 2 of them have well-known names and are standardized. They are called PRIMARY and CLIPBOARD. Their respective conventional behaviors are as follows:

  • PRIMARY
    • Applications claim PRIMARY when text is selected
    • Applications request PRIMARY from the owning application and paste its contents on middle click.
  • CLIPBOARD
    • Applications claim CLIPBOARD when an explicit command is given, typically Ctrl-c.
    • Applications request CLIPBOARD from the owning application and paste its contents when an explicit command is given, typically Ctrl-v.
    • There might be additional rules I'm unsure about, like if no application owns CLIPBOARD but some application owns PRIMARY, paste primary instead upon Ctrl-v.

It seems like CLIPBOARD already does what you need. You can ignore PRIMARY if you want (but note that some older applications like xterm may only support PRIMARY). Personally I do the opposite: I ignore CLIPBOARD and use only PRIMARY. I guess that's just the way I learned to use X11, I wasn't even aware that there was CLIPBOARD at first. But in order to mitigate the problem you describe, I often wish there was a pushable & poppable stack of PRIMARY selections, so I could "pop" to the previous selection after clobbering it with a different one.

In response to your explicit question about whether the PRIMARY behaviour can be disabled, I think that would be quite difficult. The most straightforward way would be to individually disable it in each application (or toolkits which the applications use) which is surely not feasible. I suppose a kind of "X11 firewall" which blocks requests to claim PRIMARY could be constructed, but I don't think that would really buy you anything more than you can already get by ignoring PRIMARY and using CLIPBOARD only.

More information: What's the difference between Primary Selection and Clipboard Buffer?

Solution 2

I was messing around and accidentally enabled the Synchronize contents of the clipboard and the selection option in KDE Plasma's Clipboard application. Un-checking this solved a similar problem for me.

KDE Plasma Clipboard utility configuration

Solution 3

In XFCE I had the same problem, and the worse was that the auto selection break the copy/paste in remote viewers like x2go, vnc... then I had to reopen a new session to solve it every time I select a text.

solution: run xfce4-clipman from shell, right click in task bar and select propreties, then disable Ignore selections and Sync selections

enter image description here

thanks to @sweisgerber.dev for this method

Solution 4

For all Gnome applications the Middle Click Paste can be disabled from Gnome-Tweaks/Keyboard & Mouse/Middle Click Paste (which toggles the gtk-enable-primary-paste Gnome option).

A solution working for the whole X and not disabling completely the middle click (e.g. for closing tabs in the browser) is XMousePasteBlock which should be run by the user, it is also packaged for Arch in AUR.

Share:
12,614

Related videos on Youtube

Jhon
Author by

Jhon

Updated on September 18, 2022

Comments

  • Jhon
    Jhon over 1 year

    I would like to disable the default behavior that seems to happen with every Linux distribution that I've ever tried that any selected text is immediately sent to the clipboard (Mint, Ubuntu, Fedora, SuSE, etc.) and every window manager (Gnome, KDE, Cinnamon), and instead to behave more like the Windows implementation.

    I know that this is a beloved behavior by many in Linux, and I'm sure many will think I'm an idiot. The reason I want to do this, is that I'm a keyboard junky when navigating a GUI. (e.g. when I'm in Linux and I copy a URL and then switch to my browser and type Ctrl+L, it selects the address bar and moves my intended paste down one notch and replaces it with what I'm trying to overwrite.) I know there are MANY workarounds, but I don't really care about that, what I'd prefer is to be able to toggle the behavior for the clipboard.

    • Peter.O
      Peter.O almost 9 years
      I often just ignore X's text selection (centre click to paste), and just use Ctrl-C Ctrl-V Ctrl-X which is the clipboard (Not X's selection) they are different things. - For working in the terminal and some other situations, I find the X-selection is handy - otherwise I just use Ctrl C,V,X - It is very handy some times as it gives access to 2 stored strings. However the X-selecltion is simply built in to X, and it is rather volatile when flip from window to window and selecting text (which causes the previous one to be unselected) ...
    • Peter.O
      Peter.O almost 9 years
      This Q/A (Askubuntu) may shed some light on the functioning of X-selection and how it interacts with Ctrl C,V,X clipboard: Inconsistant copy and paste behaviour. Is there a fix?
    • Jhon
      Jhon almost 9 years
      Thanks Peter.O. But it seems that I haven't found a way to ignore X's text selection without using the mouse. I almost exclusively use Ctrl+C,X,V but when I type Ctrl+L to access the address bar, (I now know thanks to your link) Firefox replaces the Clipboard with Primary. So I guess this is really a much larger problem. Hopefully some of these X replacements that I've been reading about will improve the situation.
    • Jarek
      Jarek almost 8 years
  • Jhon
    Jhon almost 9 years
    Thanks Celada, I wish I could find a way to ignore Primary without resorting to the mouse. It doesn't sound like there's an easy solution to my annoyance, and as long as I use Linux I'll need to modify my behavior. Thanks so much for the thorough answer!
  • Stéphane Chazelas
    Stéphane Chazelas over 6 years
    xterm is fully customizable (with the translations resource) to tell it to use any selection or cut buffer (with fall backs if needed)
  • sweisgerber.dev
    sweisgerber.dev over 6 years
    Yes, there's also another solution hidden for OP: Set the checkbox at Ignore selection and Plasma's clipboard manager will never overwrite your Ctrl-V clipboard again. If your clipboard content is overwritten with the PRIMARY selection contents, it's not X11's fault, it's usually a clipboard manager at work.
  • eeijlar
    eeijlar over 4 years
    I wish i could upvote this 50 times, have been looking for this for ages!
  • flarn2006
    flarn2006 over 4 years
    What about SECONDARY? I'm pretty sure it too has a well known name and is standardized; it's just very rarely supported by applications.
  • Alec Istomin
    Alec Istomin about 4 years
    for those who want to synchronize PRIMARY and CLIPBOARD, install parcellite , as suggested in superuser.com/questions/68170/…
  • kamal khaja
    kamal khaja over 3 years
    I swear I just wanted to upvote the first comment here and was getting mad why it didn't work... then I turned off dark reader addon, and I realized I had already clicked it. Like, a year ago.
  • KeatsKelleher
    KeatsKelleher over 3 years
    ok, so how do you get to that menu?
  • Admin
    Admin almost 2 years
    @Celada "pushable & poppable stack of PRIMARY selections" Does it exist yet?