diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-26 22:13:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 22:13:42 +0800 |
commit | a24dd0392bc4e00b1cb2a1b9efe62045924489ae (patch) | |
tree | 03b23da734eea9f2f782ff4226fa0aabc4fe52e1 | |
parent | 5a08b5be3c34595487f7a22475e4434721f2320f (diff) | |
download | rneovim-a24dd0392bc4e00b1cb2a1b9efe62045924489ae.tar.gz rneovim-a24dd0392bc4e00b1cb2a1b9efe62045924489ae.tar.bz2 rneovim-a24dd0392bc4e00b1cb2a1b9efe62045924489ae.zip |
vim-patch:9.0.1580: CI: indent test hangs on FreeBSD (#23768)
Problem: CI: indent test hangs on FreeBSD.
Solution: Set 'nomore' when running the indent tests. (Ozaki Kiichi,
closes vim/vim#12446)
https://github.com/vim/vim/commit/9f3afe7a70d50447424b8d7404aae0d641cd827c
Co-authored-by: ichizok <gclient.gaap@gmail.com>
-rw-r--r-- | runtime/indent/testdir/runtest.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/indent/testdir/runtest.vim b/runtime/indent/testdir/runtest.vim index fa4e16e381..882a140a8d 100644 --- a/runtime/indent/testdir/runtest.vim +++ b/runtime/indent/testdir/runtest.vim @@ -12,6 +12,7 @@ set nowrapscan set report=9999 set modeline set debug=throw +set nomore au! SwapExists * call HandleSwapExists() func HandleSwapExists() |