diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-12 10:14:52 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-12 10:14:52 -0500 |
commit | d7e18b5c9591da967b707ee4219f1f8789edc175 (patch) | |
tree | 1d69a0495a3f08feee1715bc04ba8984135bd03e /src/nvim/edit.c | |
parent | 4c55c34efaabaa151391edf59c59a14411a79d8c (diff) | |
download | rneovim-d7e18b5c9591da967b707ee4219f1f8789edc175.tar.gz rneovim-d7e18b5c9591da967b707ee4219f1f8789edc175.tar.bz2 rneovim-d7e18b5c9591da967b707ee4219f1f8789edc175.zip |
Revert "[WIP] "abstract_ui" fixes and improvements"
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 89696410c9..e1a1fb18fa 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -2294,7 +2294,8 @@ static int pum_wanted(void) return FALSE; /* The display looks bad on a B&W display. */ - if (!abstract_ui && t_colors < 8) + if (t_colors < 8 + ) return FALSE; return TRUE; } |