diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-09-02 19:51:49 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-09-05 15:01:07 +0200 |
commit | cdd9e868efdad1f1eb9febfabb5f8671e75b95b9 (patch) | |
tree | ac89c4ef5e1cb83daaf7d643044df82f3151cc9b /src/nvim/api/ui.c | |
parent | c00a33ed19c1372bf5880e2f32adf37c9bea165b (diff) | |
download | rneovim-cdd9e868efdad1f1eb9febfabb5f8671e75b95b9.tar.gz rneovim-cdd9e868efdad1f1eb9febfabb5f8671e75b95b9.tar.bz2 rneovim-cdd9e868efdad1f1eb9febfabb5f8671e75b95b9.zip |
doc: channel, eventloop
Diffstat (limited to 'src/nvim/api/ui.c')
-rw-r--r-- | src/nvim/api/ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 573be23d8e..bbbd5ab2dc 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -215,6 +215,7 @@ static void ui_set_option(UI *ui, String name, Object value, Error *error) #undef UI_EXT_OPTION } +/// Pushes data into UI.UIData, to be consumed later by remote_ui_flush(). static void push_call(UI *ui, char *name, Array args) { Array call = ARRAY_DICT_INIT; |