mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
Revert "[WIP] "abstract_ui" fixes and improvements"
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user