mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
14 lines
283 B
Lua
Vendored
14 lines
283 B
Lua
Vendored
local debug_utils = {}
|
|
|
|
function debug_utils.sourced_filepath()
|
|
local str = debug.getinfo(2, "S").source:sub(2)
|
|
return str
|
|
end
|
|
|
|
function debug_utils.sourced_filename()
|
|
local str = debug_utils.sourced_filepath()
|
|
return str:match "^.*/(.*).lua$" or str
|
|
end
|
|
|
|
return debug_utils
|