mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-18 06:25:13 +02:00
Fix #6419
This commit is contained in:
@@ -497,10 +497,10 @@ func (self *handler) on_key_event(event *loop.KeyEvent) (err error) {
|
||||
} else if event.MatchesPressOrRepeat("f4") || event.MatchesPressOrRepeat("ctrl+4") {
|
||||
event.Handled = true
|
||||
self.switch_mode(FAVORITES)
|
||||
} else if event.MatchesPressOrRepeat("tab") || event.MatchesPressOrRepeat("ctrl+]") {
|
||||
} else if event.MatchesPressOrRepeat("ctrl+tab") || event.MatchesPressOrRepeat("ctrl+]") {
|
||||
event.Handled = true
|
||||
self.next_mode(1)
|
||||
} else if event.MatchesPressOrRepeat("shift+tab") || event.MatchesPressOrRepeat("ctrl+[") {
|
||||
} else if event.MatchesPressOrRepeat("ctrl+shift+tab") || event.MatchesPressOrRepeat("ctrl+[") {
|
||||
event.Handled = true
|
||||
self.next_mode(-1)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user