1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
local M = {}
M.clean_path = function (path)
return path and (string.gsub(path, "[/\\]+", "/"))
end
M.get_exe = function (path)
if vim.fn.has("win32") ~= 0 then
local suffixes = { ".exe", ".CMD", ".cmd", ".ps1" }
for _, v in ipairs(suffixes) do
if string.find(path, v.."$") and vim.uv.fs_stat(path) then
return path
end
end
for _, v in ipairs(suffixes) do
local p = path..v
if vim.uv.fs_stat(p) then return p end
end
return nil
end
if vim.fn.executable(path) ~= 0 then
return path
end
return nil
end
M.walk_up = function (path, func)
local current_path = vim.fn.fnamemodify(path, ":p")
while true do
local result = func(current_path)
if result then
return result
end
local new_path = vim.fn.fnamemodify(current_path, ":h")
if new_path == current_path then
break
end
current_path = new_path
end
return nil
end
M.find_node_modules = function (path)
return M.walk_up(path, function (current_path)
local node_modules_path = current_path.."/node_modules"
if vim.fn.isdirectory(node_modules_path) ~= 0 then
return node_modules_path
end
return nil
end)
end
M.find_npm_exe = function (path, exe)
local node_modules_path = M.find_node_modules(path)
if not node_modules_path then return nil end
local try_exe_path = node_modules_path.."/.bin/"..exe
local exe_path = M.get_exe(try_exe_path)
if exe_path then return M.clean_path(exe_path) end
return nil
end
function M.remove_element(tbl, element)
local index = nil
for i, v in ipairs(tbl) do
if element == v then
index = i
break
end
end
if index then
table.remove(tbl, index)
end
return tbl
end
return M
|