From 1181325968ed9e1dd1da8943f4536d0d0089c02f Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Wed, 6 Feb 2013 17:30:33 +1300 Subject: [PATCH] Reinstate noautocmd when going to pprev window --- autoload/tagbar.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index d32d739..ca241a5 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -2416,7 +2416,7 @@ function! s:RenderContent(...) abort " Get the previous window number, so that we can reproduce " the window entering history later. Do not run autocmd on " this command, make sure nothing is interfering. - call s:winexec('wincmd p') + call s:winexec('noautocmd wincmd p') let pprevwinnr = winnr() call s:winexec(tagbarwinnr . 'wincmd w')