36 lines
915 B
Diff
36 lines
915 B
Diff
From fb3f9699362f8d51c3b48fcaea1eb2ed16c81454 Mon Sep 17 00:00:00 2001
|
|
From: Christian Brabandt <cb@256bit.org>
|
|
Date: Sun, 11 Aug 2024 20:09:17 +0200
|
|
Subject: [PATCH] Problem: crash with WinNewPre autocommand
|
|
|
|
Problem: crash with WinNewPre autocommand, because window
|
|
structures are not yet safe to use
|
|
Solution: Don't trigger WinNewPre on :tabnew
|
|
|
|
Signed-off-by: Christian Brabandt <cb@256bit.org>
|
|
---
|
|
src/testdir/test_autocmd.vim | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
|
|
index e251112..3df3af1 100644
|
|
--- a/src/testdir/test_autocmd.vim
|
|
+++ b/src/testdir/test_autocmd.vim
|
|
@@ -14,6 +14,13 @@ func s:cleanup_buffers() abort
|
|
endfor
|
|
endfunc
|
|
|
|
+func CleanUpTestAuGroup()
|
|
+ augroup testing
|
|
+ au!
|
|
+ augroup END
|
|
+ augroup! testing
|
|
+endfunc
|
|
+
|
|
func Test_vim_did_enter()
|
|
call assert_false(v:vim_did_enter)
|
|
|
|
--
|
|
2.33.0
|
|
|