summaryrefslogtreecommitdiff
path: root/runtime/plugin
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-28 22:21:12 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-28 22:21:12 +0000
commit28a896f54d4b2f2b4bef8ef4144dde1673c9d6e7 (patch)
tree18e049c8ca2444545334b55a80032d259bed3e0a /runtime/plugin
parentc13e998d4a82e2c90efb4bbc1dd4ea2d6c424592 (diff)
downloadvim-git-28a896f54d4b2f2b4bef8ef4144dde1673c9d6e7.tar.gz
patch 9.0.0969: matchparen highlight is not updated when switching buffersv9.0.0969
Problem: Matchparen highlight is not updated when switching buffers. Solution: Listen to the BufLeave and the BufWinEnter autocmd events. (closes #11626)
Diffstat (limited to 'runtime/plugin')
-rw-r--r--runtime/plugin/matchparen.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index ce2225c5f..eb4a9ecf7 100644
--- a/runtime/plugin/matchparen.vim
+++ b/runtime/plugin/matchparen.vim
@@ -1,6 +1,6 @@
" Vim plugin for showing matching parens
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2021 Apr 08
+" Last Change: 2022 Nov 28
" Exit quickly when:
" - this plugin was already loaded (or disabled)
@@ -19,8 +19,8 @@ endif
augroup matchparen
" Replace all matchparen autocommands
- autocmd! CursorMoved,CursorMovedI,WinEnter,WinScrolled * call s:Highlight_Matching_Pair()
- autocmd! WinLeave * call s:Remove_Matches()
+ autocmd! CursorMoved,CursorMovedI,WinEnter,BufWinEnter,WinScrolled * call s:Highlight_Matching_Pair()
+ autocmd! WinLeave,BufLeave * call s:Remove_Matches()
if exists('##TextChanged')
autocmd! TextChanged,TextChangedI * call s:Highlight_Matching_Pair()
endif