feat(tmux): update tmux configuration

- use `pbcopy` as I don't use linux that much these days
- add `Prefix + i` keybind for recent session
- add message after `Prefix + r`

Signed-off-by: Seongmin Lee <boltlessengineer@proton.me>

boltless.me 1101024a baa3eb65

verified
Changed files
+5 -2
tmux
+5 -2
tmux/.tmux.conf
··· 30 30 # bind ctrl-ed version of other mappings 31 31 # e.g. `n` and `p` for navigating windows 32 32 33 - bind-key r source-file ~/.tmux.conf 33 + bind-key r source-file ~/.tmux.conf \; display-message "sourced" 34 34 35 35 set-window-option -g mode-keys vi 36 36 bind-key -T copy-mode-vi v send-keys -X begin-selection 37 37 bind-key -T copy-mode-vi V send-keys -X select-line 38 - bind-key -T copy-mode-vi y send-keys -X copy-selection 38 + # bind-key -T copy-mode-vi y send-keys -X copy-selection 39 + bind-key -T copy-mode-vi y send-keys -X copy-pipe "pbcopy" 39 40 bind-key -T copy-mode-vi r send-keys -X rectangle-toggle 40 41 bind-key -T copy-mode-vi i send-keys -X cancel 41 42 bind-key -T copy-mode-vi C-c send-keys -X cancel 42 43 43 44 bind-key C-e run-shell "tmux neww -n 'sessionizer' tmux-sessionizer" 44 45 bind-key e run-shell "tmux neww -n 'sessionizer' tmux-sessionizer" 46 + bind-key C-i switch-client -l 47 + bind-key i switch-client -l