We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59bb70d commit b2a821bCopy full SHA for b2a821b
lua/devcontainer-cli/devcontainer_utils.lua
@@ -232,6 +232,8 @@ function M.create_connect_cmd()
232
local connect_command = {}
233
if vim.env.TMUX ~= "" then
234
connect_command = { "tmux split-window -h -t \"$TMUX_PANE\"" }
235
+ elseif vim.fn.executable("wezterm") == 1 then
236
+ connect_command = { "wezterm cli split-pane --right --cwd ." }
237
elseif vim.fn.executable("allacrity") == 1 then
238
connect_command = { "alacritty --working-directory . --title \"Devcontainer\" -e" }
239
elseif vim.fn.executable("gnome-terminal") == 1 then
0 commit comments