Add tmux window movement keybindings and update documentation

- Add Ctrl-Shift-Left/Right keybindings to quickly move windows
- Update README with comprehensive tmux keybindings documentation
  - Organize keybindings into categories: Pane, Window, Session & Config
  - Document all existing and new keybindings
  - Add descriptions for better clarity

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Yan Lin 2025-07-31 01:08:11 +02:00
parent ee38e45748
commit 716d8578dc
2 changed files with 25 additions and 2 deletions

View file

@ -102,6 +102,10 @@
# Automatically renumber windows
set -g renumber-windows on
# Quick window movement
bind-key -n C-S-Left swap-window -t -1\; select-window -t -1
bind-key -n C-S-Right swap-window -t +1\; select-window -t +1
'';
};
}