From e968d72cae57180921ad9cf24cde74fedc8b03d3 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Thu, 16 Jun 2016 16:14:10 +0200 Subject: api/ui: use ui options instead of one method per feature Use new nvim_ui_ prefix to avoid breaking change. --- src/nvim/tui/tui.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/tui') diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 5ed13aa207..bfc03dfb81 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -83,6 +83,7 @@ UI *tui_start(void) UI *ui = xcalloc(1, sizeof(UI)); ui->stop = tui_stop; ui->rgb = p_tgc; + ui->pum_external = false; ui->resize = tui_resize; ui->clear = tui_clear; ui->eol_clear = tui_eol_clear; -- cgit