Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save single session #447

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ Automatic restoring and continuous saving of tmux env is also possible with

### Key bindings

- `prefix + Ctrl-s` - save
- `prefix + Ctrl-s` - save all sessions
- `prefix + Ctrl-t` - save current session
- `prefix + Ctrl-r` - restore

### About
Expand Down
4 changes: 3 additions & 1 deletion docs/custom_key_bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

The default key bindings are:

- `prefix + Ctrl-s` - save
- `prefix + Ctrl-s` - save all sessions
- `prefix + Ctrl-t` - save current session
- `prefix + Ctrl-r` - restore

To change these, add to `.tmux.conf`:

set -g @resurrect-save 'S'
set -g @resurrect-save-current 'T'
set -g @resurrect-restore 'R'
9 changes: 9 additions & 0 deletions resurrect.tmux
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ set_save_bindings() {
done
}

set_save_current_bindings() {
local key_bindings=$(get_tmux_option "$save_current_option" "$default_save_current_key")
local key
for key in $key_bindings; do
tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/save.sh -t #S"
done
}

set_restore_bindings() {
local key_bindings=$(get_tmux_option "$restore_option" "$default_restore_key")
local key
Expand All @@ -33,6 +41,7 @@ set_script_path_options() {

main() {
set_save_bindings
set_save_current_bindings
set_restore_bindings
set_default_strategies
set_script_path_options
Expand Down
23 changes: 19 additions & 4 deletions scripts/save.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,18 @@ source "$CURRENT_DIR/spinner_helpers.sh"
d=$'\t'
delimiter=$'\t'

# if "quiet" script produces no output
SCRIPT_OUTPUT="$1"
while getopts "t:q" opt; do
case "$opt" in
t)
TARGET_SESSION="$OPTARG"
tmux has-session -t "$TARGET_SESSION" ||
exit 1
;;
q)
SCRIPT_OUTPUT="quiet"
;;
esac
done

grouped_sessions_format() {
local format
Expand Down Expand Up @@ -82,11 +92,15 @@ state_format() {
}

dump_panes_raw() {
tmux list-panes -a -F "$(pane_format)"
[ -z "$TARGET_SESSION" ] &&
tmux list-panes -a -F "$(pane_format)" ||
tmux list-panes -s -t "$TARGET_SESSION" -F "$(pane_format)"
}

dump_windows_raw(){
tmux list-windows -a -F "$(window_format)"
[ -z "$TARGET_SESSION" ] &&
tmux list-windows -a -F "$(window_format)" ||
tmux list-windows -t "$TARGET_SESSION" -F "$(window_format)"
}

toggle_window_zoom() {
Expand Down Expand Up @@ -215,6 +229,7 @@ dump_windows() {
}

dump_state() {
[[ -z "$TARGET_SESSION" ]] || return
tmux display-message -p "$(state_format)"
}

Expand Down
3 changes: 3 additions & 0 deletions scripts/variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ default_save_key="C-s"
save_option="@resurrect-save"
save_path_option="@resurrect-save-script-path"

default_save_current_key="C-t"
save_current_option="@resurrect-save-current"

default_restore_key="C-r"
restore_option="@resurrect-restore"
restore_path_option="@resurrect-restore-script-path"
Expand Down