mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 18:11:47 +00:00
fix(windows): stdpath("state") => "nvim-data" #18546
This was missed in https://github.com/neovim/neovim/pull/15583
This commit is contained in:
@@ -206,7 +206,7 @@ describe('startup defaults', function()
|
||||
|
||||
describe('$NVIM_LOG_FILE', function()
|
||||
local xdgdir = 'Xtest-startup-xdg-logpath'
|
||||
local xdgstatedir = xdgdir..'/nvim'
|
||||
local xdgstatedir = iswin() and xdgdir..'/nvim-data' or xdgdir..'/nvim'
|
||||
after_each(function()
|
||||
os.remove('Xtest-logpath')
|
||||
rmdir(xdgdir)
|
||||
|
||||
Reference in New Issue
Block a user