Turn off focus tracking while doing tty remote control

Fixes #8733
This commit is contained in:
Kovid Goyal
2025-06-16 21:57:19 +05:30
parent 8b395759e2
commit 4a13c53438
4 changed files with 17 additions and 3 deletions

View File

@@ -209,6 +209,15 @@ func NoRestoreColors(self *Loop) {
self.terminal_options.restore_colors = false
}
func (self *Loop) NoFocusTracking() *Loop {
self.terminal_options.focus_tracking = false
return self
}
func NoFocusTracking(self *Loop) {
self.terminal_options.focus_tracking = false
}
func (self *Loop) ColorSchemeChangeNotifications() *Loop {
self.terminal_options.color_scheme_change_notification = true
return self