mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
runtime: Fix plugin/matchparen.vim for abstract_ui
This commit is contained in:
parent
c1252a5615
commit
4a28785c6e
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user