fix: enable tmux mouse mode and update gitignore for split layout

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
centdix
2026-02-21 01:29:39 +00:00
parent 81d386d365
commit d6d4d85d8f
2 changed files with 8 additions and 1 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
node_modules/
public/dist/
bun.lock
backend/node_modules/
backend/bun.lock
frontend/node_modules/
frontend/bun.lock
frontend/dist/
frontend/.vite/
public/
+1
View File
@@ -61,6 +61,7 @@ export async function attach(
const cmd = [
`tmux new-session -d -s "${gName}" -t "${tmuxSession}"`,
`tmux set-option -t "${gName}" mouse on`,
`tmux select-window -t "${gName}:${windowTarget}"`,
`stty rows ${rows} cols ${cols}`,
`exec tmux attach-session -t "${gName}"`,