diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-04-17 19:08:55 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-04-17 19:09:18 +0200 |
commit | c8189096e82848079b52fbb2e1e75a3fe26674ee (patch) | |
tree | 550e40bf400b85f57226b65a9fc0291fafa744e0 | |
parent | 7a13611ba2033766da8cad73f46362bd01632c2c (diff) | |
download | rneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.tar.gz rneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.tar.bz2 rneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.zip |
ui_events: correct wrong argument order
-rw-r--r-- | src/nvim/api/ui_events.in.h | 2 |
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); |