We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee54ecd + 764a24b commit e1ff211Copy full SHA for e1ff211
resources/js/terminal.js
@@ -184,10 +184,6 @@ export function initializeTerminalComponent() {
184
// Copy and paste functionality
185
this.term.attachCustomKeyEventHandler((arg) => {
186
if (arg.ctrlKey && arg.code === "KeyV" && arg.type === "keydown") {
187
- navigator.clipboard.readText()
188
- .then(text => {
189
- this.socket.send(JSON.stringify({ message: text }));
190
- });
191
return false;
192
}
193
0 commit comments