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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| local M = {}
M.get_directories = function(path, level)
local directories = {}
level = level or 0
if level > 1 then
return directories
end
-- Use safer path handling
local sanitized_path = string.gsub(path, '"', '\\"')
local p = io.popen('find "' .. sanitized_path .. '" -maxdepth 1 -mindepth 1 \\( -type d -o -type l \\)')
if not p then
wezterm.log_warn("Failed to open directory: " .. path)
return directories
end
for file in p:lines() do
local dir_name = file:match("([^/]+)$")
if dir_name then
table.insert(directories, {
label = file,
id = dir_name,
})
-- Recursively get subdirectories
local subdirs = M.get_directories(file, level + 1)
for _, subdir in ipairs(subdirs) do
table.insert(directories, subdir)
end
end
end
p:close()
return directories
end
M.open_project = function(window, _, id, label)
local mux = wezterm.mux
if not label then
wezterm.log_info("Project selection cancelled")
return
end
wezterm.emit("tab-changed", window)
local workspace = label:match("([^/]+)/[^/]+$")
-- Find existing window for workspace
local target_window = nil
for _, win in ipairs(mux.all_windows()) do
if win:get_workspace() == workspace then
target_window = win
break
end
end
-- Create new window if needed
if not target_window then
local _, _, new_window = mux.spawn_window({
cwd = label,
workspace = workspace,
})
target_window = new_window
target_window:set_title(workspace)
-- Set title for initial tab
local tabs = target_window:tabs()
for _, tab in ipairs(tabs) do
tab:set_title(id)
wezterm.log_info("Created new tab:", tab:get_title())
end
end
-- Find existing tab or create new one
local target_tab = nil
for _, tab in ipairs(target_window:tabs()) do
if tab:get_title() == id then
target_tab = tab
wezterm.log_info("Found existing tab")
break
end
end
if not target_tab then
target_tab = target_window:spawn_tab({ cwd = label })
target_tab:set_title(id)
end
target_tab:activate()
mux.set_active_workspace(workspace)
end
M.show_projects = function(window, pane)
local choices_work = M.get_directories("/Users/username/work", 0)
local choices_personal = M.get_directories("/Users/username/personal", 0)
local choices = {}
for _, v in ipairs(choices_work) do
table.insert(choices, v)
end
for _, v in ipairs(choices_personal) do
table.insert(choices, v)
end
window:perform_action(
wezterm.action.InputSelector({
action = wezterm.action_callback(M.open_project),
choices = choices,
fuzzy = true,
title = "💡 Choose a project",
}),
pane
)
end
return M
|