diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-02 21:16:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-01-12 09:47:40 -0300 |
commit | 4a28785c6e279c17941679feadc6fb6d090ace9f (patch) | |
tree | 88ab7dca9d98145b6ce1306662410ec8f4170f18 | |
parent | c1252a5615d9e69cac50570e8de70e5036a67908 (diff) | |
download | rneovim-4a28785c6e279c17941679feadc6fb6d090ace9f.tar.gz rneovim-4a28785c6e279c17941679feadc6fb6d090ace9f.tar.bz2 rneovim-4a28785c6e279c17941679feadc6fb6d090ace9f.zip |
runtime: Fix plugin/matchparen.vim for abstract_ui
-rw-r--r-- | runtime/plugin/matchparen.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 3804ab949a..4dc0b7cd61 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() || (&t_Co < 8 && !has("gui_running")) + if pumvisible() || (&term != 'abstract_ui' && &t_Co < 8 && !has("gui_running")) return endif |