mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
ui: Implement set_{title,icon}
This commit is contained in:
@@ -139,6 +139,18 @@ void ui_suspend(void)
|
||||
}
|
||||
}
|
||||
|
||||
void ui_set_title(char *title)
|
||||
{
|
||||
UI_CALL(set_title, title);
|
||||
UI_CALL(flush);
|
||||
}
|
||||
|
||||
void ui_set_icon(char *icon)
|
||||
{
|
||||
UI_CALL(set_icon, icon);
|
||||
UI_CALL(flush);
|
||||
}
|
||||
|
||||
/*
|
||||
* Try to get the current Vim shell size. Put the result in Rows and Columns.
|
||||
* Use the new sizes as defaults for 'columns' and 'lines'.
|
||||
|
Reference in New Issue
Block a user