diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-25 12:26:01 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-25 14:54:20 +0200 |
commit | 68d425ac92599089047d98f1c533981ea917fed1 (patch) | |
tree | 784aa8d4a6b4436fcd7af8004d619f4702c27bac /test | |
parent | ccd1a84a9655279230be15630d4e5978c806c4e1 (diff) | |
download | rneovim-68d425ac92599089047d98f1c533981ea917fed1.tar.gz rneovim-68d425ac92599089047d98f1c533981ea917fed1.tar.bz2 rneovim-68d425ac92599089047d98f1c533981ea917fed1.zip |
refactor: remove 'shortmess' save/restore panic for ex commands
This was only used to avoid the effect of SHM_OVERALL. This can easily
be handled in isolation, instead of clearing out all of 'shortmess' which
has unwanted side effects and mystifies what really is going on.
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_autocmd.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_autocmd.vim b/test/old/testdir/test_autocmd.vim index 453ac10c00..b3238e8214 100644 --- a/test/old/testdir/test_autocmd.vim +++ b/test/old/testdir/test_autocmd.vim @@ -3671,7 +3671,7 @@ endfunc func SetupVimTest_shm() let g:bwe = [] let g:brp = [] - set shortmess+=F + set shortmess-=l messages clear let dirname='XVimTestSHM' |