[vim] Ensure backup, swap, and undo directories exist so those state files are placed correctly
This commit is contained in:
parent
31492fe257
commit
3a3b73a915
2 changed files with 24 additions and 22 deletions
|
@ -5,6 +5,7 @@ vim.cmd [[ source ~/.vimrc.common ]]
|
|||
|
||||
require 'configuration'
|
||||
require 'keys'
|
||||
require 'os'
|
||||
|
||||
vim.cmd [[ source ~/.vim/plugins.vim ]]
|
||||
|
||||
|
@ -16,9 +17,9 @@ function ensure_metadata_directories_exist()
|
|||
}
|
||||
|
||||
for _, opt in ipairs(paths) do
|
||||
local first_path = opt[1]
|
||||
if string.find(first_path, "//$") then
|
||||
os.execute("mkdir -p " .. first_path)
|
||||
local firstPath = opt[1]
|
||||
if string.find(firstPath, "//$") then
|
||||
os.execute("mkdir", "-p", firstPath)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue