mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 16:36:30 +00:00
Merge pull request #14864 from seandewar/get-config-zindex
fix(api/win_get_config): include z-index
This commit is contained in:
@@ -456,6 +456,7 @@ Dictionary nvim_win_get_config(Window window, Error *err)
|
||||
float_anchor_str[config->anchor])));
|
||||
PUT(rv, "row", FLOAT_OBJ(config->row));
|
||||
PUT(rv, "col", FLOAT_OBJ(config->col));
|
||||
PUT(rv, "zindex", INTEGER_OBJ(config->zindex));
|
||||
}
|
||||
if (config->border) {
|
||||
Array border = ARRAY_DICT_INIT;
|
||||
|
Reference in New Issue
Block a user