diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-30 08:24:22 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-13 11:54:52 -0300 |
commit | 46b4764f7a484f7b0e032878389b8a7d92197129 (patch) | |
tree | ba51e84bf79c27d0621c5a1b42837b9161b19840 /src/nvim/msgpack_rpc/remote_ui.c | |
parent | 3e83e44792021fb9d18acbb664172ce9a06dc9be (diff) | |
download | rneovim-46b4764f7a484f7b0e032878389b8a7d92197129.tar.gz rneovim-46b4764f7a484f7b0e032878389b8a7d92197129.tar.bz2 rneovim-46b4764f7a484f7b0e032878389b8a7d92197129.zip |
ui: Merge standout and reverse into one attribute
Diffstat (limited to 'src/nvim/msgpack_rpc/remote_ui.c')
-rw-r--r-- | src/nvim/msgpack_rpc/remote_ui.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/msgpack_rpc/remote_ui.c b/src/nvim/msgpack_rpc/remote_ui.c index a0bc573698..e1cb474530 100644 --- a/src/nvim/msgpack_rpc/remote_ui.c +++ b/src/nvim/msgpack_rpc/remote_ui.c @@ -249,10 +249,6 @@ static void remote_ui_highlight_set(UI *ui, HlAttrs attrs) PUT(hl, "bold", BOOLEAN_OBJ(true)); } - if (attrs.standout) { - PUT(hl, "standout", BOOLEAN_OBJ(true)); - } - if (attrs.underline) { PUT(hl, "underline", BOOLEAN_OBJ(true)); } |