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-12 09:47:40 -0300 |
commit | 0887c5446ee8ec6ea53ef69e5d02bd319e1bca1c (patch) | |
tree | ef433062bb9ff33b50c41f9e3964496f53fc884c /src/nvim/msgpack_rpc/remote_ui.c | |
parent | 0219c87534ff0770b95925529f8e89a2b6c34b14 (diff) | |
download | rneovim-0887c5446ee8ec6ea53ef69e5d02bd319e1bca1c.tar.gz rneovim-0887c5446ee8ec6ea53ef69e5d02bd319e1bca1c.tar.bz2 rneovim-0887c5446ee8ec6ea53ef69e5d02bd319e1bca1c.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)); } |