diff options
author | crupest <crupest@outlook.com> | 2023-10-02 00:02:38 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-10-02 23:29:00 +0800 |
commit | d20aa3d08f440fb176a130460e89b0aa588745ad (patch) | |
tree | c2cb7a3d9465ab5054fca4af92f9f643d4c1d758 /configs/nvim/lua/crupest/system/find.lua | |
parent | 2cf9ff8e4ad86b71ac85e1cd0ed982d604bcd301 (diff) | |
download | crupest-d20aa3d08f440fb176a130460e89b0aa588745ad.tar.gz crupest-d20aa3d08f440fb176a130460e89b0aa588745ad.tar.bz2 crupest-d20aa3d08f440fb176a130460e89b0aa588745ad.zip |
Update nvim configs.
Diffstat (limited to 'configs/nvim/lua/crupest/system/find.lua')
-rw-r--r-- | configs/nvim/lua/crupest/system/find.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configs/nvim/lua/crupest/system/find.lua b/configs/nvim/lua/crupest/system/find.lua index 857c6e7..16237ec 100644 --- a/configs/nvim/lua/crupest/system/find.lua +++ b/configs/nvim/lua/crupest/system/find.lua @@ -42,14 +42,9 @@ local function find_npm_exe(path, exe) return nil end -local function escape_space(str) - return (string.gsub(str, " ", "\\ " )) -end - return { get_exe = get_exe, find_node_modules = find_node_modules, find_npm_exe = find_npm_exe, - escape_space = escape_space } |