mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 14:18:26 +02:00
Support S8C1T mode
That is, eight bit control codes. When in S8C1T mode, kitty will send only eight bit control codes to the client.
This commit is contained in:
@@ -29,7 +29,8 @@ class Callbacks:
|
||||
|
||||
def request_capabilities(self, q):
|
||||
from kitty.terminfo import get_capabilities
|
||||
self.write(get_capabilities(q))
|
||||
c = get_capabilities(q)
|
||||
self.write(c.encode('ascii'))
|
||||
|
||||
def use_utf8(self, on):
|
||||
self.iutf8 = on
|
||||
|
||||
Reference in New Issue
Block a user