Skip to content

Commit 80bd6e4

Browse files
committed
Fix tmux bindings for compatibility with the latest version of tmux
1 parent 0521dbb commit 80bd6e4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.tmux.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ bind r move-window -r
2323
bind c new-window -c "$HOME" -n '~'
2424

2525
# show sessions tree with 'Ctrl+Q'
26-
bind -n C-Q choose-tree -G
26+
bind -n C-q choose-tree -G
2727

2828
# show or hide panes names with 'Ctrl+T'
29-
bind -n C-T set-option -p pane-border-status
29+
bind -n C-t set-option -p pane-border-status
3030

3131
# sync panes with 'Ctrl+B → A'
3232
bind a set-window-option synchronize-panes\; display-message "Panes syncing is now #{?pane_synchronized,ON,OFF}"
@@ -44,7 +44,7 @@ bind -n M-Up select-pane -U
4444
bind -n M-Down select-pane -D
4545

4646
# resize pane with 'Ctrl+Z'
47-
bind -n C-Z resize-pane -Z
47+
bind -n C-z resize-pane -Z
4848

4949
# reorder windows with 'Ctrl+Left'/'Ctrl+Right'
5050
bind -n C-Left swap-window -d -t -1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A set of `zsh`, `git`, `tig`, and `tmux` configuration files.
55
### Installation
66

77
```
8-
bash <(curl -fsSL https://andy.one/dotfiles/install.sh)
8+
bash <(curl -fsSL https://raw.githubusercontent.com/andyone/dotfiles/master/install.sh)
99
```
1010

1111
### Extra commands

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77

88
################################################################################
99

10-
VERSION="2.5.8"
10+
VERSION="2.5.9"
1111

1212
################################################################################
1313

0 commit comments

Comments
 (0)