Implement window title stack

Used by new versions of vim
This commit is contained in:
Kovid Goyal
2018-08-29 09:56:52 +05:30
parent 0e248b3faa
commit 3067103b18
5 changed files with 45 additions and 12 deletions

View File

@@ -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