File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,12 @@ that you may find helpful.
93
93
bind -T root C-S-Up select-pane -U
94
94
bind -T root C-S-Down select-pane -D
95
95
96
+ # quickly disable mouse + zoom pane (for easy copying)
97
+ bind c run-shell "tmux setw mouse off" \; resize-pane -Z \; display-message "🚫 Mouse disabled & pane zoomed"
98
+
99
+ # quickly re-enable mouse + unzoom pane (restore normal behavior)
100
+ bind v run-shell "tmux setw mouse on" \; resize-pane -Z \; display-message "🖱️ Mouse enabled & pane unzoomed"
101
+
96
102
Some helpful commands:
97
103
98
104
- ``ctrl-b + z ``: zoom into selected pane
@@ -106,6 +112,10 @@ To copy an entire pane:
106
112
- extend selection to end: ``G ``
107
113
- copy and clear selection: ``enter ``
108
114
115
+ .. tip ::
116
+
117
+ You can add the custom bindings (like ``bind c `` and ``bind v ``) directly to ``files/airflow-breeze-config/.tmux.conf ``.
118
+ This way they will be automatically loaded when you start a Breeze tmux session.
109
119
110
120
Additional tools in Breeze container
111
121
------------------------------------
You can’t perform that action at this time.
0 commit comments