api: nvim_win_config() -> nvim_win_set_config()

This commit is contained in:
Marco Hinz
2019-03-14 16:37:45 +01:00
parent 98391cd6ab
commit 3c88bbecb8
2 changed files with 15 additions and 15 deletions

View File

@@ -444,8 +444,8 @@ Boolean nvim_win_is_valid(Window window)
/// When reconfiguring a floating window, absent option keys will not be
/// changed. The following restriction apply: `row`, `col` and `relative`
/// must be reconfigured together. Only changing a subset of these is an error.
void nvim_win_config(Window window, Integer width, Integer height,
Dictionary options, Error *err)
void nvim_win_set_config(Window window, Integer width, Integer height,
Dictionary options, Error *err)
FUNC_API_SINCE(6)
{
win_T *win = find_window_by_handle(window, err);