Merge pull request #14864 from seandewar/get-config-zindex

fix(api/win_get_config): include z-index
This commit is contained in:
Björn Linse
2021-07-02 14:52:08 +02:00
committed by GitHub
2 changed files with 4 additions and 3 deletions

View File

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