tmux-resurrect
tmux-resurrect copied to clipboard
Persists tmux environment across system restarts.
Nnn ( file manager ) https://github.com/jarun/nnn
The save code is probably this: [https://github.com/tmux-plugins/tmux-resurrect/blob/master/scripts/save.sh#L145](https://github.com/tmux-plugins/tmux-resurrect/blob/master/scripts/save.sh#L145) The restore code: [https://github.com/tmux-plugins/tmux-resurrect/blob/master/scripts/restore.sh#L273](https://github.com/tmux-plugins/tmux-resurrect/blob/master/scripts/restore.sh#L273) Presumably there just needs to be a branch with the appropriate fish shell history commands.
The plugin saves and creates a new `~/.tmux/resurrect/...txt` file. The symlink to `last` is created. Restoration fails to make any changes to my tmux layout. I've uninstalled and reinstalled the...
there's any ways for cleaning/clear my tmux-resurrect saved session ? iam sorry if duplicated, let me know
As far as I can tell, there currently is no way to bind to a client key table using the @resurrect-save and @resurrect-restore options. The options seem to bind to...
``` # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' # set -g @plugin 'tmux-plugins/tmux-resurrect" # Other examples: # set -g @plugin 'github_username/plugin_name' # set -g @plugin...
Process restoration seems to be based on the process name, but sometimes processes launched with different options will have the same process name, and you may want some of them...
Reproduce: 1. start tmux 2. open a bunch of windows, close them all 3. kill server 4. restart tmux 5 There is only one tmux window, it should be 0...
tested this plugin today, work fine. but in all the recovered windows shell auto-completion is gone... is this a known bug?
We should keep the state files in `$XDG_STATE_HOME` location, default `$HOME/.local/state`, not in the `$XDG_STATE_HOME` dir. > The $XDG_STATE_HOME contains state data that should persist between (application) restarts, but that...