From 3c88bbecb8dc2bf1fb426cce08af232640bfd44d Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 14 Mar 2019 16:37:45 +0100 Subject: api: nvim_win_config() -> nvim_win_set_config() --- src/nvim/api/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/api/window.c') diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index b3acbe90cb..f8bcaddb36 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -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); -- cgit