betterterm 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/configs/tmux.conf +34 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/configs/tmux.conf
CHANGED
|
@@ -52,7 +52,40 @@ bind a setw synchronize-panes
|
|
|
52
52
|
|
|
53
53
|
# Help menu (Cmd+?)
|
|
54
54
|
unbind ?
|
|
55
|
-
bind ?
|
|
55
|
+
bind ? display-menu -T "#[align=centre,bold] betterterm " -x C -y C \
|
|
56
|
+
"" \
|
|
57
|
+
"#[bold]── Files & Browser ──" "" "" \
|
|
58
|
+
"File Explorer Cmd+E" e "run-shell '~/.local/bin/toggle-yazi.sh'" \
|
|
59
|
+
"Toggle Browser Cmd+Y" b "run-shell '~/.local/bin/toggle-browser.sh'" \
|
|
60
|
+
"Close Browser Cmd+Sh+Y" B "run-shell '~/.local/bin/close-browser.sh'" \
|
|
61
|
+
"Browser URL Bar Cmd+L" l "run-shell '~/.local/bin/browser-nav.sh'" \
|
|
62
|
+
"" \
|
|
63
|
+
"#[bold]── Layout Presets ──" "" "" \
|
|
64
|
+
"Focus 1 pane Cmd+1" 1 "run-shell '~/.local/bin/layout.sh 1'" \
|
|
65
|
+
"Dual 2 panes Cmd+2" 2 "run-shell '~/.local/bin/layout.sh 2'" \
|
|
66
|
+
"Triple 3 panes Cmd+3" 3 "run-shell '~/.local/bin/layout.sh 3'" \
|
|
67
|
+
"Quad 4 panes Cmd+4" 4 "run-shell '~/.local/bin/layout.sh 4'" \
|
|
68
|
+
"" \
|
|
69
|
+
"#[bold]── Panes ──" "" "" \
|
|
70
|
+
"Zoom Toggle Cmd+Z" z "resize-pane -Z" \
|
|
71
|
+
"Broadcast Toggle Cmd+Sh+B" a "setw synchronize-panes" \
|
|
72
|
+
"Swap Up Cmd+Sh+Up" K "swap-pane -U" \
|
|
73
|
+
"Swap Down Cmd+Sh+Down" J "swap-pane -D" \
|
|
74
|
+
"Swap Left Cmd+Sh+Left" H "run-shell '~/.local/bin/swap-pane.sh left'" \
|
|
75
|
+
"Swap Right Cmd+Sh+Right" L "run-shell '~/.local/bin/swap-pane.sh right'" \
|
|
76
|
+
"" \
|
|
77
|
+
"#[bold]── Windows ──" "" "" \
|
|
78
|
+
"New Window Cmd+T" c "new-window" \
|
|
79
|
+
"Next Window Cmd+]" n "next-window" \
|
|
80
|
+
"Previous Window Cmd+[" p "previous-window" \
|
|
81
|
+
"Split Vertical Cmd+\\" "|" "split-window -h -c '#{pane_current_path}'" \
|
|
82
|
+
"Split Horizontal Cmd+-" - "split-window -v -c '#{pane_current_path}'" \
|
|
83
|
+
"" \
|
|
84
|
+
"#[bold]── Sessions ──" "" "" \
|
|
85
|
+
"Save Session Cmd+S" S "run-shell '~/.local/bin/session-save.sh'" \
|
|
86
|
+
"Load Session Cmd+O" O "run-shell '~/.local/bin/session-load.sh'" \
|
|
87
|
+
"" \
|
|
88
|
+
"Reload Config Cmd+R" r "source-file ~/.tmux.conf \\; display 'Config reloaded'"
|
|
56
89
|
|
|
57
90
|
# Pane swap
|
|
58
91
|
bind K swap-pane -U
|