mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-20 22:26:28 +00:00
Dont send on_text events with empty text
This commit is contained in:
parent
5bc8d05f0a
commit
e8f7a2b345
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ class Loop:
|
|||
self.handler.on_eot()
|
||||
else:
|
||||
self.handler.on_text(chunk, self.in_bracketed_paste)
|
||||
else:
|
||||
elif chunk:
|
||||
self.handler.on_text(chunk, self.in_bracketed_paste)
|
||||
|
||||
def _on_dcs(self, dcs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue