mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
vim-patch:8.2.4210: window title test fails in some configurations
Problem: Window title test fails in some configurations.
Solution: Only run the test if the title can be obtained.
a6c09a7c20
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
893437512c
commit
7fab06cb0c
@ -2011,6 +2011,9 @@ endfunc
|
||||
|
||||
func Test_setbufvar_keep_window_title()
|
||||
CheckRunVimInTerminal
|
||||
if !has('title') || empty(&t_ts)
|
||||
throw "Skipped: can't get/set title"
|
||||
endif
|
||||
|
||||
let lines =<< trim END
|
||||
edit Xa.txt
|
||||
|
Loading…
Reference in New Issue
Block a user