From 1b62f0bddc639a9b30ff95ea2326e52f9b1e7528 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 10 Feb 2026 09:17:40 +0200 Subject: Fix hexai-tmux-edit to open in current working directory hexai-tmux-edit was opening in the wrong directory because the tmux popup wasn't being told which directory to use. This fix: - Updates bind-key example to cd into pane's current path - Passes working directory to popup via -d flag using os.Getwd() - Updates all documentation with corrected bind-key examples Co-Authored-By: Claude Sonnet 4.5 --- docs/tmux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/tmux.md') diff --git a/docs/tmux.md b/docs/tmux.md index e7c99dd..b851296 100644 --- a/docs/tmux.md +++ b/docs/tmux.md @@ -84,7 +84,7 @@ The editor opens as a tmux popup overlay, pre-filled with any existing prompt te Add this keybinding to `~/.tmux.conf`: ``` -bind e run-shell -b "hexai-tmux-edit --pane '#{pane_id}'" +bind e run-shell -b "cd '#{pane_current_path}' && hexai-tmux-edit --pane '#{pane_id}'" ``` Then press `prefix + e` in any pane running an AI agent. Hexai auto-detects the agent, extracts any existing prompt text, and pre-fills the editor. After saving and closing, the edited text is sent back to the agent's pane. -- cgit v1.2.3