mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 00:46:30 +00:00
runtime: Fix plugin/matchparen.vim for abstract_ui
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user