pull/454/merge
Jason Gomez 2023-05-15 20:00:29 +01:00 committed by GitHub
commit a66c6fb262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ set_save_bindings() {
local key
for key in $key_bindings; do
tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/save.sh"
tmux bind-key -N "Save session" "$key"
done
}
@ -18,6 +19,7 @@ set_restore_bindings() {
local key
for key in $key_bindings; do
tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/restore.sh"
tmux bind-key -N "Restore session" "$key"
done
}