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-13 11:54:52 -0300 |
commit | 29bc6dfabde2c8881a719175f3d6cbf422ac72c0 (patch) | |
tree | 2091900f7f796ef812984f5d65d4188a0be1d7b6 /src/nvim/ui.h | |
parent | 631099d02abf2c5ceee88267622570df576b464c (diff) | |
download | rneovim-29bc6dfabde2c8881a719175f3d6cbf422ac72c0.tar.gz rneovim-29bc6dfabde2c8881a719175f3d6cbf422ac72c0.tar.bz2 rneovim-29bc6dfabde2c8881a719175f3d6cbf422ac72c0.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); |