Const
List tmux panes (tmux list-panes).
tmux list-panes
One record per pane.
const panes = await tmux.listPanes({ targetWindow: "work:1" });const allPanes = await tmux.listPanes({ all: true, includeVariables: ["session_name", "window_name"] }); Copy
const panes = await tmux.listPanes({ targetWindow: "work:1" });const allPanes = await tmux.listPanes({ all: true, includeVariables: ["session_name", "window_name"] });
List tmux panes (
tmux list-panes).