Finish porting unicode input

This commit is contained in:
Kovid Goyal
2023-02-15 17:33:53 +05:30
parent 1321a96ae7
commit ac5298ce76
5 changed files with 17 additions and 568 deletions

View File

@@ -352,6 +352,10 @@ func (self *Loop) ClearScreen() {
self.QueueWriteString("\x1b[H\x1b[2J")
}
func (self *Loop) SendOverlayReady() {
self.QueueWriteString("\x1bP@kitty-overlay-ready|\x1b\\")
}
func (self *Loop) Quit(exit_code int) {
self.exit_code = exit_code
self.keep_going = false