diff options
Diffstat (limited to 'src/nvim/api/window.c')
-rw-r--r-- | src/nvim/api/window.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index 2204170aab..a68ae805e8 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -345,6 +345,7 @@ Object nvim_win_get_option(Window window, String name, Error *err) /// Sets a window option value. Passing 'nil' as value deletes the option(only /// works if there's a global fallback) /// +/// @param channel_id /// @param window Window handle /// @param name Option name /// @param value Option value @@ -527,9 +528,7 @@ Dictionary nvim_win_get_config(Window window, Error *err) /// @param force Behave like `:close!` The last window of a buffer with /// unwritten changes can be closed. The buffer will become /// hidden, even if 'hidden' is not set. -/// /// @param[out] err Error details, if any -/// @return Window number void nvim_win_close(Window window, Boolean force, Error *err) FUNC_API_SINCE(6) { |