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/ui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/ui.h') diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 3d568d597a..d14bc5812c 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -15,7 +15,7 @@ typedef struct { typedef struct ui_t UI; struct ui_t { - bool rgb; + bool rgb, pum_external; int width, height; void *data; void (*resize)(UI *ui, int rows, int columns); -- cgit