mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Fix #4302
This commit is contained in:
parent
c48049a3bb
commit
c0b73986cb
1 changed files with 1 additions and 1 deletions
|
|
@ -450,7 +450,7 @@ class UnicodeInput(Handler):
|
|||
self.line_edit.current_input = hex(val - 1)[2:]
|
||||
self.refresh()
|
||||
return
|
||||
if self.mode is NAME and key_event.type is not EventType.RELEASE and not key_event.has_mods:
|
||||
if self.mode is NAME:
|
||||
if key_event.matches('shift+tab'):
|
||||
self.table.move_current(cols=-1)
|
||||
self.refresh()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue