runtime: Fix plugin/matchparen.vim for abstract_ui

This commit is contained in:
Thiago de Arruda 2015-01-02 21:16:18 -03:00
parent c1252a5615
commit 4a28785c6e

View File

@ -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() || (&t_Co < 8 && !has("gui_running"))
if pumvisible() || (&term != 'abstract_ui' && &t_Co < 8 && !has("gui_running"))
return
endif