Unverified Commit 669c22ad authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #95 from 502647092/patch-1

feat: add ctrl +c and ctrl + v support
parents c6b443be bd75ad5a
...@@ -51,6 +51,15 @@ export class ElementSshTermComponent implements OnInit, AfterViewInit, OnDestroy ...@@ -51,6 +51,15 @@ export class ElementSshTermComponent implements OnInit, AfterViewInit, OnDestroy
} }
}); });
this.view.Term = this.term; this.view.Term = this.term;
this.term.attachCustomKeyEventHandler(e => {
if (e.ctrlKey && e.key == 'c' && term.hasSelection()) {
return false;
}
if (e.ctrlKey && e.key == 'v') {
return false;
}
return true;
})
} }
changeWinSize(size: Array<number>) { changeWinSize(size: Array<number>) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment