this post was submitted on 12 Sep 2023
37 points (93.0% liked)

Linux

45582 readers
600 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Why is it, that some applications (namely Firefox and VSCode) seems to place the current selection into the buffer that is accessed with the middle Mouse Button and not the one accessed by Shift+ins, used anywhere else.

It seems usually selecting places the content into both buffers, but just not in platform ignorant builds…

This often breaks my work flow. Any idea on how to fix this?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 9 months ago (1 children)

There's a bug open for Firefox and you can change VSCode's behavior by putting this in your keybindings.json:

{
    "key": "shift+insert",
    "command": "editor.action.selectionClipboardPaste",
    "when": "textInputFocus && !editorReadonly"
}

Not sure why either of them are messing with a "standard" shortcut...
If you want a more system-wide solution there are utilities that let you sync the PRIMARY (on selection) and CLIPBOARD (Ctrl+c) buffers mentioned in the Arch Wiki entry.