mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 17:52:02 +02:00
Add DECPAM and DECPNM
This commit is contained in:
@@ -934,8 +934,17 @@ class Screen(QObject):
|
||||
y -= self.margins.top
|
||||
self.write_process_input(ctrl.CSI + "{0};{1}R".format(y, x).encode('ascii'))
|
||||
|
||||
def numeric_keypad_mode(self):
|
||||
pass # TODO: Implement this
|
||||
|
||||
def application_keypad_mode(self):
|
||||
pass # TODO: Implement this
|
||||
|
||||
def debug(self, *args, **kwargs):
|
||||
"""Endpoint for unrecognized escape sequences.
|
||||
|
||||
By default is a noop.
|
||||
"""
|
||||
import traceback
|
||||
traceback.print_stack()
|
||||
print('unknown escape code:', args, kwargs)
|
||||
|
||||
Reference in New Issue
Block a user