Refine documentation and zoxide integration

- Clarify testing command in CLAUDE.md (use hms)
- Remove redundant shell refresh instruction
- Fix formatting consistency in testing section

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Yan Lin 2025-07-30 00:20:02 +02:00
parent bf30e5ae8b
commit 72ccd5c5e0
4 changed files with 14 additions and 3 deletions

View file

@ -12,6 +12,9 @@ if [ -z "$SESSION_NAME" ] || [ -z "$CODE_PATH" ]; then
fi
tmux new-session -d -s $SESSION_NAME -c "$CODE_PATH"
# Record directory in zoxide for smart navigation
zoxide add "$CODE_PATH" 2>/dev/null || true
tmux rename-window -t $SESSION_NAME:1 "nvim"
tmux send-keys -t $SESSION_NAME:1 "nvim" C-m
tmux new-window -t $SESSION_NAME:2 -n "ai" -c "$CODE_PATH"

View file

@ -16,6 +16,10 @@ fi
# Create windows for code
tmux new-session -d -s $SESSION_NAME -c "$CODE_PATH"
# Record directories in zoxide for smart navigation
zoxide add "$CODE_PATH" 2>/dev/null || true
zoxide add "$PAPER_PATH" 2>/dev/null || true
tmux rename-window -t $SESSION_NAME:1 "code"
tmux send-keys -t $SESSION_NAME:1 "nvim" C-m
tmux new-window -t $SESSION_NAME:2 -n "code-ai" -c "$CODE_PATH"