diff options
author | AdnoC <adam.r.cutler@gmail.com> | 2016-04-23 02:58:24 -0400 |
---|---|---|
committer | AdnoC <adam.r.cutler@gmail.com> | 2016-05-17 16:31:42 -0400 |
commit | 244cfe86b58bbf94778d09deb2b452e551594179 (patch) | |
tree | d0eb61e58c3386fb05311864f83ea7f20d8886aa /src/nvim/ui.h | |
parent | c9b1ad3a578ccc42c1b5a6ff58166590c349eed6 (diff) | |
download | rneovim-244cfe86b58bbf94778d09deb2b452e551594179.tar.gz rneovim-244cfe86b58bbf94778d09deb2b452e551594179.tar.bz2 rneovim-244cfe86b58bbf94778d09deb2b452e551594179.zip |
syntax: Add support for the "special" color used for undercurls
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); |