Reputation: 14860
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
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