mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-10-23 07:13:11 +00:00
Add a comment
This commit is contained in:
parent
dc165175cf
commit
6f5f68df1a
@ -721,6 +721,9 @@ Terminal.prototype.open = function(parent, focus) {
|
||||
this.renderer.refreshSelection(data.start, data.end);
|
||||
});
|
||||
this.selectionManager.on('newselection', text => {
|
||||
// If there's a new selection, put it into the textarea, focus and select it
|
||||
// in order to register it as a selection on the OS. This event is fired
|
||||
// only on Linux to enable middle click to paste selection.
|
||||
this.textarea.value = text;
|
||||
this.textarea.focus();
|
||||
this.textarea.select();
|
||||
|
Loading…
Reference in New Issue
Block a user