1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00
2022-05-15 21:16:02 +08:00

29 lines
439 B
Lua

local fn = vim.fn
-- inspect something
function inspect(item)
vim.pretty_print(item)
end
local M = {}
function M.executable(name)
if fn.executable(name) > 0 then
return true
end
return false
end
function M.may_create_dir()
local fpath = fn.expand('<afile>')
local parent_dir = fn.fnamemodify(fpath, ":p:h")
local res = fn.isdirectory(parent_dir)
if res == 0 then
fn.mkdir(parent_dir, 'p')
end
end
return M