api/ui: use ui options instead of one method per feature

Use new nvim_ui_ prefix to avoid breaking change.
This commit is contained in:
Björn Linse
2016-06-16 16:14:10 +02:00
parent 999af47be8
commit e968d72cae
5 changed files with 80 additions and 20 deletions

View File

@@ -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);