aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.h
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-12-30 08:24:22 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-01-13 11:54:52 -0300
commit46b4764f7a484f7b0e032878389b8a7d92197129 (patch)
treeba51e84bf79c27d0621c5a1b42837b9161b19840 /src/nvim/ui.h
parent3e83e44792021fb9d18acbb664172ce9a06dc9be (diff)
downloadrneovim-46b4764f7a484f7b0e032878389b8a7d92197129.tar.gz
rneovim-46b4764f7a484f7b0e032878389b8a7d92197129.tar.bz2
rneovim-46b4764f7a484f7b0e032878389b8a7d92197129.zip
ui: Merge standout and reverse into one attribute
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r--src/nvim/ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h
index 7c4a233d79..0fcd686e7b 100644
--- a/src/nvim/ui.h
+++ b/src/nvim/ui.h
@@ -6,7 +6,7 @@
#include <stdint.h>
typedef struct {
- bool bold, standout, underline, undercurl, italic, reverse;
+ bool bold, underline, undercurl, italic, reverse;
int foreground, background;
} HlAttrs;