mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 09:12:07 +00:00
feat(startup): Source runtime/plugin/**/*.lua at startup
For opt plugins these files are sourced on `:packadd` * `:runtime` Now can exexute lua files
This commit is contained in:
@@ -878,6 +878,11 @@ function module.os_kill(pid)
|
||||
or 'kill -9 '..pid..' > /dev/null'))
|
||||
end
|
||||
|
||||
-- Create directories with non exsisting intermidiate directories
|
||||
function module.mkdir_p(path)
|
||||
return module.meths.call_function('mkdir', {path, 'p'})
|
||||
end
|
||||
|
||||
module = global_helpers.tbl_extend('error', module, global_helpers)
|
||||
|
||||
return function(after_each)
|
||||
|
Reference in New Issue
Block a user