aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-03-11 23:01:20 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-03-11 23:01:33 +0800
commita6e72aa295c633e67b3533a5a2088b7916941ad0 (patch)
tree8d47ea0f1f780fd21fba4ce8a64703d2df6c7adc
parentd0b5c1f696016a90a5b386339f4425a7bc69f252 (diff)
downloadrneovim-a6e72aa295c633e67b3533a5a2088b7916941ad0.tar.gz
rneovim-a6e72aa295c633e67b3533a5a2088b7916941ad0.tar.bz2
rneovim-a6e72aa295c633e67b3533a5a2088b7916941ad0.zip
vim-patch:8.2.4443: regexp pattern test fails on Mac
Problem: Regexp pattern test fails on Mac. Solution: Do not use a swapfile for the buffer. https://github.com/vim/vim/commit/2457b2bbc28cce6e8c1106d427b8e867d4f58cfa
-rw-r--r--src/nvim/testdir/test_regexp_utf8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_regexp_utf8.vim b/src/nvim/testdir/test_regexp_utf8.vim
index 70741209fe..eab47dbccc 100644
--- a/src/nvim/testdir/test_regexp_utf8.vim
+++ b/src/nvim/testdir/test_regexp_utf8.vim
@@ -594,7 +594,7 @@ endfunc
func Test_match_too_complicated()
set regexpengine=1
- exe "vsplit \xeb\xdb\x99"
+ exe "noswapfile vsplit \xeb\xdb\x99"
silent! buf \&\zs*\zs*0
bwipe!
set regexpengine=0