mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
spellfile.vim: Search for a writable directory on Windows
Fixes #6664 until #6272 is merged and sdtpath('data') can be used.
This commit is contained in:
parent
ad527392ab
commit
b9b2fb7d5d
@ -197,7 +197,7 @@ function! spellfile#WritableSpellDir()
|
||||
" Always use the $XDG_DATA_HOME/nvim/site directory
|
||||
if exists('$XDG_DATA_HOME')
|
||||
return $XDG_DATA_HOME . "/nvim/site/spell"
|
||||
else
|
||||
elseif !(has('win32') || has('win64'))
|
||||
return $HOME . "/.local/share/nvim/site/spell"
|
||||
endif
|
||||
for dir in split(&rtp, ',')
|
||||
|
Loading…
Reference in New Issue
Block a user