aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-02-11 13:01:31 +0100
committerGitHub <noreply@github.com>2018-02-11 13:01:31 +0100
commit564ad60c0624941bdd63a6ed026cd03573c46f5a (patch)
treef965a496f29fa35d17af6829238bc6e8aa65007e /src/nvim/ui.h
parentdd068928c1c39854a65108366c1a3106cfdb43c5 (diff)
parent5d8da126d0b5ab7f550a74264ba434a2ad04280e (diff)
downloadrneovim-564ad60c0624941bdd63a6ed026cd03573c46f5a.tar.gz
rneovim-564ad60c0624941bdd63a6ed026cd03573c46f5a.tar.bz2
rneovim-564ad60c0624941bdd63a6ed026cd03573c46f5a.zip
Merge pull request #7982 from bfredl/hlrefactor
Refactor HlAttrs so that termguicolors is implemented purely on TUI side
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r--src/nvim/ui.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h
index 0e40a1a215..60adcb974f 100644
--- a/src/nvim/ui.h
+++ b/src/nvim/ui.h
@@ -16,14 +16,6 @@ typedef enum {
} UIWidget;
#define UI_WIDGETS (kUIWildmenu + 1)
-typedef struct {
- bool bold, underline, undercurl, italic, reverse;
- int foreground, background, special;
-} HlAttrs;
-
-#define HLATTRS_INIT \
- ((HlAttrs){ false, false, false, false, false, -1, -1, -1 })
-
typedef struct ui_t UI;
struct ui_t {