diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-09-06 07:25:01 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-06 07:25:01 +0200 | 
| commit | 51808a244ecaa0a40b4e8280938333d2792d8422 (patch) | |
| tree | 722b303136a2dec83f3f4f14ee0b5d3aa62fa559 /src/nvim/api/ui.c | |
| parent | 82795c2c3a429b2725af882cad4317bed8f1b741 (diff) | |
| parent | b9d6bda53126433cbb251b47d8788d92cda9e6e4 (diff) | |
| download | rneovim-51808a244ecaa0a40b4e8280938333d2792d8422.tar.gz rneovim-51808a244ecaa0a40b4e8280938333d2792d8422.tar.bz2 rneovim-51808a244ecaa0a40b4e8280938333d2792d8422.zip  | |
Merge #7221 from justinmk/ev-focusgained
tui: schedule event instead of <FocusGained> pseudokey
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;  | 
