mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 15:28:17 +00:00
rename ui_is_external to ui_has (#9576)
This commit is contained in:
@@ -413,10 +413,10 @@ void ui_cursor_shape(void)
|
||||
conceal_check_cursor_line();
|
||||
}
|
||||
|
||||
/// Returns true if `widget` is externalized.
|
||||
bool ui_is_external(UIExtension widget)
|
||||
/// Returns true if the given UI extension is enabled.
|
||||
bool ui_has(UIExtension ext)
|
||||
{
|
||||
return ui_ext[widget];
|
||||
return ui_ext[ext];
|
||||
}
|
||||
|
||||
Array ui_array(void)
|
||||
|
Reference in New Issue
Block a user