diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-12 10:15:13 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-12 10:15:13 -0500 |
commit | 9d0be9604eac8ddd9f856baa0f07625754c4967b (patch) | |
tree | 1d69a0495a3f08feee1715bc04ba8984135bd03e /src/nvim/ui.h | |
parent | 4c55c34efaabaa151391edf59c59a14411a79d8c (diff) | |
parent | d7e18b5c9591da967b707ee4219f1f8789edc175 (diff) | |
download | rneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.tar.gz rneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.tar.bz2 rneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.zip |
Merge pull request #1804 from neovim/revert-1657-abstract-ui-fixes
Revert "[WIP] "abstract_ui" fixes and improvements"
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 3d3e2f4ffc..d0933055cc 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -6,14 +6,13 @@ #include <stdint.h> typedef struct { - bool bold, underline, undercurl, italic, reverse; + bool bold, standout, underline, undercurl, italic, reverse; int foreground, background; } HlAttrs; typedef struct ui_t UI; struct ui_t { - bool rgb; int width, height; void *data; void (*resize)(UI *ui, int rows, int columns); @@ -33,8 +32,7 @@ struct ui_t { void (*bell)(UI *ui); void (*visual_bell)(UI *ui); void (*flush)(UI *ui); - void (*update_fg)(UI *ui, int fg); - void (*update_bg)(UI *ui, int bg); + void (*suspend)(UI *ui); }; #ifdef INCLUDE_GENERATED_DECLARATIONS |