aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-01-12 10:15:13 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-01-12 10:15:13 -0500
commit9d0be9604eac8ddd9f856baa0f07625754c4967b (patch)
tree1d69a0495a3f08feee1715bc04ba8984135bd03e /runtime
parent4c55c34efaabaa151391edf59c59a14411a79d8c (diff)
parentd7e18b5c9591da967b707ee4219f1f8789edc175 (diff)
downloadrneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.tar.gz
rneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.tar.bz2
rneovim-9d0be9604eac8ddd9f856baa0f07625754c4967b.zip
Merge pull request #1804 from neovim/revert-1657-abstract-ui-fixes
Revert "[WIP] "abstract_ui" fixes and improvements"
Diffstat (limited to 'runtime')
-rw-r--r--runtime/plugin/matchparen.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index 4dc0b7cd61..3804ab949a 100644
--- a/runtime/plugin/matchparen.vim
+++ b/runtime/plugin/matchparen.vim
@@ -45,7 +45,7 @@ function! s:Highlight_Matching_Pair()
" Avoid that we remove the popup menu.
" Return when there are no colors (looks like the cursor jumps).
- if pumvisible() || (&term != 'abstract_ui' && &t_Co < 8 && !has("gui_running"))
+ if pumvisible() || (&t_Co < 8 && !has("gui_running"))
return
endif