diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-19 22:16:59 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-19 22:20:52 -0400 |
commit | 74f64601817a6cec92bf40a3b29809cb6e12afcc (patch) | |
tree | b6adbb55ea0f7bf409c8d6f366338da380135a3d /src/nvim/ui.h | |
parent | 1fabc639078e1ddbc4ef6ddd7cb310a67fb1c0fb (diff) | |
parent | e5eea7fa06ae7057521755d1f638d34e049bd379 (diff) | |
download | rneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.tar.gz rneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.tar.bz2 rneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.zip |
Merge #4633: support "special" highlight (undercurl)
Closes #2040
Closes #3370
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 4c051fcfbf..5934d2fee9 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -7,7 +7,7 @@ typedef struct { bool bold, underline, undercurl, italic, reverse; - int foreground, background; + int foreground, background, special; } HlAttrs; typedef struct ui_t UI; @@ -35,6 +35,7 @@ struct ui_t { void (*flush)(UI *ui); void (*update_fg)(UI *ui, int fg); void (*update_bg)(UI *ui, int bg); + void (*update_sp)(UI *ui, int sp); void (*suspend)(UI *ui); void (*set_title)(UI *ui, char *title); void (*set_icon)(UI *ui, char *icon); |