diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-21 16:16:57 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-08-21 16:17:01 +0800 |
commit | bd9a9e63bc8d58beb5ab4b9564ba17b63f60200f (patch) | |
tree | c8e726563ac4c5d853b34e7ac5945e960898966b | |
parent | 67edc0a77297e6bc6f12178c664ef34f227bcbde (diff) | |
download | rneovim-bd9a9e63bc8d58beb5ab4b9564ba17b63f60200f.tar.gz rneovim-bd9a9e63bc8d58beb5ab4b9564ba17b63f60200f.tar.bz2 rneovim-bd9a9e63bc8d58beb5ab4b9564ba17b63f60200f.zip |
vim-patch:8.2.4212: window title test still fails in some configurations
Problem: Window title test still fails in some configurations.
Solution: Explicitly set the 'title' option.
https://github.com/vim/vim/commit/1450112eef2eda211d398d6d7ac03f7a29fa4f55
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | test/old/testdir/test_functions.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_functions.vim b/test/old/testdir/test_functions.vim index fe3faae38a..2672e70dc5 100644 --- a/test/old/testdir/test_functions.vim +++ b/test/old/testdir/test_functions.vim @@ -2016,6 +2016,7 @@ func Test_setbufvar_keep_window_title() endif let lines =<< trim END + set title edit Xa.txt let g:buf = bufadd('Xb.txt') inoremap <F2> <C-R>=setbufvar(g:buf, '&autoindent', 1) ?? ''<CR> |