Mercurial > dotfiles
annotate dot_tmux.conf @ 1058:9a26b3369ef0
feat: add extra changes to helix build
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Wed, 28 Aug 2024 20:02:57 +0200 |
parents | 632e28eb77b2 |
children |
rev | line source |
---|---|
257 | 1 # Nested TMUX sessions (from |
2 # https://medium.freecodecamp.org/tmux-in-practice-local-and-nested-remote-tmux-sessions-4f7ba5db8795) | |
348
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
3 bind -T root F11 \ |
257 | 4 set prefix None \;\ |
5 set key-table off \;\ | |
6 set status-right "#[fg=colour0,bg=colour1] DISABLED #[fg=colour3,bg=colour0] #{session_name}#[fg=colour1] | #[fg=colour2]%d %b %l:%M %p " | |
7 refresh-client -S \;\ | |
8 | |
348
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
9 bind -T off F11 \ |
257 | 10 set -u prefix \;\ |
11 set -u key-table \;\ | |
12 set -u status-right \;\ | |
13 refresh-client -S | |
14 # improve colors | |
355
44442a6b8aa6
Set the smso option to make italics work in tmux
zegervdv <zegervdv@me.com>
parents:
348
diff
changeset
|
15 set -g default-terminal 'tmux-256color' |
44442a6b8aa6
Set the smso option to make italics work in tmux
zegervdv <zegervdv@me.com>
parents:
348
diff
changeset
|
16 set -as terminal-overrides ',xterm*:Tc:smso=\E[3m' |
44442a6b8aa6
Set the smso option to make italics work in tmux
zegervdv <zegervdv@me.com>
parents:
348
diff
changeset
|
17 set -g -a terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' |
257 | 18 set-option -g allow-rename off |
19 set-window-option -g automatic-rename off | |
20 | |
21 # Status bar | |
22 set -g set-titles 'off' | |
23 set -g status-position 'top' | |
697
f2984842d6e2
fix: set background color of tmux status line
zegervdv <zegervdv@me.com>
parents:
668
diff
changeset
|
24 set -g status-style 'bg=#fbfafc' |
257 | 25 set -g status-left "" |
26 set -g status-right-length 200 | |
668 | 27 set -g status-right "#[fg=white,bg=#7653c1] vsim #[fg=white,bg=#404a54] #(ps hux -u $(whoami) | grep 'vish' | grep -v -E 'grep|view' | wc -l) #[fg=colour3,bg=default] #[fg=colour0,bg=colour3] load #[fg=white,bg=#404a54] #(cat /proc/loadavg | awk '{ print $3; }' | xargs printf '%2.2f') #[fg=colour3,bg=default] #[fg=colour0,bg=#73b00a] mem #[fg=white,bg=#404a54] #(ps haux | awk -v user=$(whoami) '$1 ~ user { sum += $4 } END { print sum; }' | xargs printf '%2.2f')% #[fg=colour3,bg=default] #[fg=white,bg=#cf4f5f] time #[fg=white,bg=#404a54] %d %b %l:%M %p #[fg=colour3,bg=default] #[fg=colour15,bg=colour8] #{session_name} #[fg=colour0,bg=default]" |
257 | 28 |
29 # Tabs | |
30 setw -g window-status-format " #I #W " | |
668 | 31 setw -g window-status-style "fg=#404a54,bg=#e3ebf1" |
257 | 32 setw -g window-status-current-format " #I #W " |
668 | 33 setw -g window-status-current-style "bg=#404a54,fg=#ffffff" |
257 | 34 |
35 set -g status-justify "left" | |
36 | |
668 | 37 setw -g window-status-bell-style "fg=#ffffff,bg=#d44950" |
38 setw -g mode-style "bg=#fbe9ad" | |
257 | 39 |
40 bind s split-window -v -c "#{pane_current_path}" | |
41 bind v split-window -h -c "#{pane_current_path}" | |
42 bind c command-prompt -p "Name:" "new-window -c \"#{pane_current_path}\" -n %%" | |
43 | |
44 # Open man pages in split | |
45 bind @ command-prompt -p "Man:" "split-window -v 'exec man %%'" | |
46 | |
47 # act like vim | |
48 bind Escape copy-mode | |
49 set-window-option -g mode-keys vi | |
50 bind-key -T copy-mode-vi 'v' send -X begin-selection | |
51 bind-key -T copy-mode-vi 'V' send -X select-line | |
52 bind-key -T copy-mode-vi 'r' send -X rectangle-toggle | |
53 unbind-key -T copy-mode-vi MouseDragEnd1Pane | |
54 unbind -T copy-mode-vi MouseDragEnd1Pane | |
770
9f4e4087e2e7
fix: paste current selection on middlemouse
zegervdv <zegervdv@me.com>
parents:
768
diff
changeset
|
55 # Copy and Paste selection on middle mouse |
9f4e4087e2e7
fix: paste current selection on middlemouse
zegervdv <zegervdv@me.com>
parents:
768
diff
changeset
|
56 bind-key -T copy-mode-vi MouseDown2Pane send-keys -X copy-pipe-and-cancel "tmux paste-buffer" |
257 | 57 |
1049
632e28eb77b2
feat: unmap tmux pane navigation shortcuts
Zeger Van de Vannet <zeger@vandevan.net>
parents:
848
diff
changeset
|
58 bind-key h select-pane -L |
632e28eb77b2
feat: unmap tmux pane navigation shortcuts
Zeger Van de Vannet <zeger@vandevan.net>
parents:
848
diff
changeset
|
59 bind-key j select-pane -D |
632e28eb77b2
feat: unmap tmux pane navigation shortcuts
Zeger Van de Vannet <zeger@vandevan.net>
parents:
848
diff
changeset
|
60 bind-key k select-pane -U |
632e28eb77b2
feat: unmap tmux pane navigation shortcuts
Zeger Van de Vannet <zeger@vandevan.net>
parents:
848
diff
changeset
|
61 bind-key l select-pane -R |
348
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
62 |
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
63 bind-key -T copy-mode-vi 'C-h' select-pane -L |
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
64 bind-key -T copy-mode-vi 'C-j' select-pane -D |
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
65 bind-key -T copy-mode-vi 'C-k' select-pane -U |
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
66 bind-key -T copy-mode-vi 'C-l' select-pane -R |
f220567b278e
Update tmux-vim mapping
Zeger Van de Vannet <zegervdv@me.com>
parents:
297
diff
changeset
|
67 bind-key -T copy-mode-vi 'C-\' select-pane -l |
568 | 68 |
844
9e2c5662c2cb
feat: enable OSC 133 in tmux and zsh
zegervdv <zegervdv@me.com>
parents:
822
diff
changeset
|
69 bind-key -T copy-mode-vi ] send-keys -X next-prompt |
9e2c5662c2cb
feat: enable OSC 133 in tmux and zsh
zegervdv <zegervdv@me.com>
parents:
822
diff
changeset
|
70 bind-key -T copy-mode-vi [ send-keys -X previous-prompt |
9e2c5662c2cb
feat: enable OSC 133 in tmux and zsh
zegervdv <zegervdv@me.com>
parents:
822
diff
changeset
|
71 |
257 | 72 unbind C-b |
73 set -g prefix C-Space | |
74 bind Space send-prefix | |
75 set -g escape-time 20 | |
76 | |
77 # start window numbers at 1 to match keyboard order with tmux window order | |
78 set -g base-index 1 | |
79 | |
80 # renumber windows sequentially after closing any of them | |
81 set -g renumber-windows on | |
82 | |
83 bind-key r source ~/.tmux.conf | |
84 | |
85 # Fix hightlighting in less | |
86 set -ga terminal-overrides ',*:sitm@,ritm@' | |
87 | |
88 # increase scrollback lines | |
89 set -g history-limit 100000 | |
90 | |
91 setw -g mouse on | |
92 | |
93 set -g focus-events on | |
94 | |
95 # Allow for visual bell when a command completes | |
96 set-window-option -g visual-bell on | |
97 set-window-option -g bell-action other | |
98 | |
614 | 99 # Allow OSC52 from applications |
100 set -s set-clipboard on | |
101 | |
257 | 102 # Local config |
103 if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local' | |
104 | |
105 # Config | |
106 set -g @scroll-without-changing-pane "on" | |
107 set -g @emulate-scroll-for-no-mouse-alternate-buffer "on" | |
108 | |
377
ce08bc71b455
Manually manage tmux plugins
Zeger Van de Vannet <zegervdv@me.com>
parents:
355
diff
changeset
|
109 run-shell ~/.tmux/plugins/tmux-better-mouse-mode/scroll_copy_mode.tmux |
ce08bc71b455
Manually manage tmux plugins
Zeger Van de Vannet <zegervdv@me.com>
parents:
355
diff
changeset
|
110 run-shell ~/.tmux/plugins/tmux-yank/yank.tmux |
505 | 111 run-shell ~/.tmux/plugins/tmux-thumbs/tmux-thumbs.tmux |
112 | |
113 set -g @thumbs-osc52 0 | |
114 # Swap behaviour | |
115 set -g @thumbs-command 'tmux set-buffer -w -- {} && tmux paste-buffer && tmux display-message \"Copied {}\"' | |
116 set -g @thumbs-upcase-command 'tmux set-buffer -w -- {} && tmux display-message \"Copied {}\"' | |
117 set -g @thumbs-hint-fg-color red | |
118 set -g @thumbs-reverse enabled | |
470
e4937efdf43e
Add some popup bindings for tmux
Zeger Van de Vannet <zegervdv@me.com>
parents:
377
diff
changeset
|
119 |
e4937efdf43e
Add some popup bindings for tmux
Zeger Van de Vannet <zegervdv@me.com>
parents:
377
diff
changeset
|
120 bind-key -n 'C-q' popup -w50% -h 90% -x 90% -E -d '#{pane_current_path}' chezmoi cd |
528
9af6e508f630
toggle zoom with c-z when zoomed, else fallback to backgrounding
zegervdv <zegervdv@me.com>
parents:
507
diff
changeset
|
121 |
9af6e508f630
toggle zoom with c-z when zoomed, else fallback to backgrounding
zegervdv <zegervdv@me.com>
parents:
507
diff
changeset
|
122 bind-key -n 'C-z' if -F '#{window_zoomed_flag}' "resize-pane -Z" "send-keys C-z" |
564
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
123 |
848
7218c2192214
feat: only enable c-s selection in copy mode
Zeger Van de Vannet <zegervdv@me.com>
parents:
844
diff
changeset
|
124 bind-key -T copy-mode-vi 'C-s' { |
564
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
125 copy-mode |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
126 send -X clear-selection |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
127 send -X start-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
128 send -X start-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
129 send -X cursor-up |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
130 send -X cursor-up |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
131 send -X start-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
132 send -X start-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
133 |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
134 if -F "#{m:*->\u00A0*,#{copy_cursor_line}}" { |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
135 send -X search-forward-text "->\u00A0" |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
136 send -X stop-selection |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
137 send -X -N 2 cursor-right |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
138 send -X begin-selection |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
139 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
140 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
141 if "#{m:*->\u00A0?*,#{copy_cursor_line}}" { |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
142 send -X cursor-left |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
143 } |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
144 } { |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
145 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
146 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
147 send -X begin-selection |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
148 send -X search-backward-text "->\u00A0" |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
149 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
150 send -X end-of-line |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
151 send -X cursor-right |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
152 send -X stop-selection |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
153 } |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
154 } |
b251d808fa04
Add tmux mapping to select the last command output and open selection in quickfix
zegervdv <zegervdv@me.com>
parents:
528
diff
changeset
|
155 |
565
697909624a17
Map quickfix edit on s (e is too useful in vi mode)
Zeger Van de Vannet <zegervdv@me.com>
parents:
564
diff
changeset
|
156 bind-key -T copy-mode-vi 's' send -X copy-pipe-and-cancel "cat > /tmp/error.txt && tmux new-window -n 'quickfix' -c \"#{pane_current_path}\" 'nvim -q /tmp/error.txt && rm -f /tmp/error.txt'" |
768
eeaf0d561877
fix: unbind mouse drag to avoid jumping back when selecting in tmux
zegervdv <zegervdv@me.com>
parents:
697
diff
changeset
|
157 |
822
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
158 |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
159 bind-key 'o' { |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
160 copy-mode |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
161 send -X clear-selection |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
162 send -X start-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
163 send -X start-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
164 send -X cursor-up |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
165 send -X cursor-up |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
166 send -X start-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
167 send -X start-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
168 |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
169 if -F "#{m:*->\u00A0*,#{copy_cursor_line}}" { |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
170 send -X search-forward-text "->\u00A0" |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
171 send -X stop-selection |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
172 send -X -N 2 cursor-right |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
173 send -X begin-selection |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
174 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
175 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
176 if "#{m:*->\u00A0?*,#{copy_cursor_line}}" { |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
177 send -X cursor-left |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
178 } |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
179 } { |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
180 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
181 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
182 send -X begin-selection |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
183 send -X search-backward-text "->\u00A0" |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
184 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
185 send -X end-of-line |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
186 send -X cursor-right |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
187 send -X stop-selection |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
188 } |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
189 |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
190 send -X copy-pipe-and-cancel "grep -oE '([^\s]+)\/([^/]+)' | fzf-tmux -d20 --multi --bind alt-a:select-all,alt-d:deselect-all | paste -sd \" \" - | xargs -I {} tmux send-keys -t #{pane_id} \"{}\"" |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
191 |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
192 } |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
193 |
0c2dcf35d759
feat: show fzf to select paths from last command output
zegervdv <zegervdv@me.com>
parents:
770
diff
changeset
|
194 |
768
eeaf0d561877
fix: unbind mouse drag to avoid jumping back when selecting in tmux
zegervdv <zegervdv@me.com>
parents:
697
diff
changeset
|
195 # unbind after loading plugins |
eeaf0d561877
fix: unbind mouse drag to avoid jumping back when selecting in tmux
zegervdv <zegervdv@me.com>
parents:
697
diff
changeset
|
196 unbind -T copy-mode-vi MouseDragEnd1Pane |