We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75458f9 commit a360a3aCopy full SHA for a360a3a
resurrect.tmux
@@ -9,15 +9,15 @@ set_save_bindings() {
9
local key_bindings=$(get_tmux_option "$save_option" "$default_save_key")
10
local key
11
for key in $key_bindings; do
12
- tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/save.sh"
+ tmux bind-key -N "Save session" "$key" run-shell "$CURRENT_DIR/scripts/save.sh"
13
done
14
}
15
16
set_restore_bindings() {
17
local key_bindings=$(get_tmux_option "$restore_option" "$default_restore_key")
18
19
20
- tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/restore.sh"
+ tmux bind-key -N "Restore session" "$key" run-shell "$CURRENT_DIR/scripts/restore.sh"
21
22
23
0 commit comments