diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-09-20 19:40:25 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-09-20 19:40:25 +0800 |
commit | cf9e700078499bd363d00b6601a37c616f2ceae8 (patch) | |
tree | c4c3bccba003e658345e13acd149f9103853fe44 /script/meta/bee/filesystem.lua | |
parent | 33536b0453ec65d1d6abf3db72e057261b2a49be (diff) | |
download | lua-language-server-cf9e700078499bd363d00b6601a37c616f2ceae8.zip |
resolve #1177 re-support for symlinks
users need to maintain the correctness of symlinks themselves
Diffstat (limited to 'script/meta/bee/filesystem.lua')
-rw-r--r-- | script/meta/bee/filesystem.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/script/meta/bee/filesystem.lua b/script/meta/bee/filesystem.lua index 717e62b2..9523103e 100644 --- a/script/meta/bee/filesystem.lua +++ b/script/meta/bee/filesystem.lua @@ -73,6 +73,11 @@ end ---@param path fs.path ---@return fs.path +function fs.fullpath(path) +end + +---@param path fs.path +---@return fs.path function fs.absolute(path) end |