mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
parent
85d0b47511
commit
a24c1c489b
1 changed files with 7 additions and 0 deletions
|
@ -148,7 +148,14 @@ export class XTermFrontend extends Frontend {
|
|||
return true
|
||||
}
|
||||
}
|
||||
|
||||
if (event.type === 'keydown' && event.key === '/' && event.ctrlKey) {
|
||||
this.input.next(Buffer.from('\u001f', 'binary'))
|
||||
return false
|
||||
}
|
||||
|
||||
this.hotkeysService.pushKeyEvent(name, event)
|
||||
|
||||
let ret = true
|
||||
if (this.hotkeysService.matchActiveHotkey(true) !== null) {
|
||||
event.stopPropagation()
|
||||
|
|
Loading…
Reference in a new issue