aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-04-19 10:22:19 +0200
committerGitHub <noreply@github.com>2018-04-19 10:22:19 +0200
commitbe1448213c7336c1be4c510f7f45c174d3a3b8c1 (patch)
tree641ef395e2c8ac78fbf1dc65c6e61c8462a97c81
parenta1530ece87c329363b40ea92e71097b783ad5215 (diff)
parentc8189096e82848079b52fbb2e1e75a3fe26674ee (diff)
downloadrneovim-be1448213c7336c1be4c510f7f45c174d3a3b8c1.tar.gz
rneovim-be1448213c7336c1be4c510f7f45c174d3a3b8c1.tar.bz2
rneovim-be1448213c7336c1be4c510f7f45c174d3a3b8c1.zip
Merge pull request #8291 from bfredl/ui_resize
ui_events: correct wrong argument order in resize event
-rw-r--r--src/nvim/api/ui_events.in.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index c599b0ce72..96d494460b 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -10,7 +10,7 @@
#include "nvim/func_attr.h"
#include "nvim/ui.h"
-void resize(Integer rows, Integer columns)
+void resize(Integer width, Integer height)
FUNC_API_SINCE(3);
void clear(void)
FUNC_API_SINCE(3);