diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-08 11:23:45 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-12 09:47:41 -0300 |
commit | 74c247f75baec5778296adf164831c5ffea0fb88 (patch) | |
tree | 1950d2681c1d659edf86477188020f04ea1492e6 /src/nvim/ui.h | |
parent | a8fe32040b039c134087c4c0d8c9e14bf50fef1a (diff) | |
download | rneovim-74c247f75baec5778296adf164831c5ffea0fb88.tar.gz rneovim-74c247f75baec5778296adf164831c5ffea0fb88.tar.bz2 rneovim-74c247f75baec5778296adf164831c5ffea0fb88.zip |
ui: Add 'rgb' parameter to ui_attach
When set to false, nvim will send cterm color numbers with `highlight_set`.
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 0fcd686e7b..9ec10db75e 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -13,6 +13,7 @@ typedef struct { typedef struct ui_t UI; struct ui_t { + bool rgb; int width, height; void *data; void (*resize)(UI *ui, int rows, int columns); |