mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 10:41:58 +02:00
Implement window title stack
Used by new versions of vim
This commit is contained in:
@@ -1254,6 +1254,15 @@ screen_report_size(Screen *self, unsigned int which) {
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
screen_manipulate_title_stack(Screen *self, unsigned int op, unsigned int which) {
|
||||
CALLBACK("manipulate_title_stack", "OOO",
|
||||
op == 23 ? Py_True : Py_False,
|
||||
which == 0 || which == 2 ? Py_True : Py_False,
|
||||
which == 0 || which == 1 ? Py_True : Py_False
|
||||
);
|
||||
}
|
||||
|
||||
void
|
||||
report_device_status(Screen *self, unsigned int which, bool private) {
|
||||
// We don't implement the private device status codes, since I haven't come
|
||||
|
||||
Reference in New Issue
Block a user