mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-20 02:18:01 +00:00
This commit is contained in:
@@ -149,11 +149,18 @@ export class XTermFrontend extends Frontend {
|
||||
}
|
||||
}
|
||||
|
||||
// Ctrl-/
|
||||
if (event.type === 'keydown' && event.key === '/' && event.ctrlKey) {
|
||||
this.input.next(Buffer.from('\u001f', 'binary'))
|
||||
return false
|
||||
}
|
||||
|
||||
// Ctrl-@
|
||||
if (event.type === 'keydown' && event.key === '@' && event.ctrlKey) {
|
||||
this.input.next(Buffer.from('\u0000', 'binary'))
|
||||
return false
|
||||
}
|
||||
|
||||
this.hotkeysService.pushKeyEvent(name, event)
|
||||
|
||||
let ret = true
|
||||
|
Reference in New Issue
Block a user