topher
topher

Reputation: 14860

How to enable middle mouse button click paste in VS Code on Linux?

In text fields and other text editors in Ubuntu, pressing the middle mouse button will copy whatever text is currently highlighted into the current pointer position. This is not working in Visual Studio Code v1.0.0. How do I enable it?

Upvotes: 10

Views: 12305

Answers (1)

Dane Balia
Dane Balia

Reputation: 5367

I've found an issue on VsCode's git repo, which will resolve the aforementioned problem. They do mention they may be a performance impact (I've not used it in earnest).

With the March release, it will be under a setting called "editor.selectionClipboard", which is off by default until we better understand the perf implications of writing to the clipboard on every selection change.

Upvotes: 14

Related Questions