Replace XDG_CACHE_DIR with XDG_CACHE_HOME
per http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
This commit is contained in:
@@ -78,8 +78,8 @@ function! neosnippet#variables#data_dir() "{{{
|
||||
let g:neosnippet#data_directory =
|
||||
\ substitute(fnamemodify(get(
|
||||
\ g:, 'neosnippet#data_directory',
|
||||
\ ($XDG_CACHE_DIR != '' ?
|
||||
\ $XDG_CACHE_DIR . '/neosnippet' : expand('~/.cache/neosnippet'))),
|
||||
\ ($XDG_CACHE_HOME != '' ?
|
||||
\ $XDG_CACHE_HOME . '/neosnippet' : expand('~/.cache/neosnippet'))),
|
||||
\ ':p'), '\\', '/', 'g')
|
||||
if !isdirectory(g:neosnippet#data_directory)
|
||||
call mkdir(g:neosnippet#data_directory, 'p')
|
||||
|
||||
Reference in New Issue
Block a user