mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-22 04:18:48 +00:00
Document known issue for restore pane contents feature
This commit is contained in:
parent
550ef94ec4
commit
7fd2c979f0
@ -5,3 +5,27 @@ This plugin enables saving and restoring tmux pane contents.
|
|||||||
This feature can be enabled by adding this line to `.tmux.conf`:
|
This feature can be enabled by adding this line to `.tmux.conf`:
|
||||||
|
|
||||||
set -g @resurrect-capture-pane-contents 'on'
|
set -g @resurrect-capture-pane-contents 'on'
|
||||||
|
|
||||||
|
##### Known issue
|
||||||
|
|
||||||
|
When using this feature, please check the value of `default-command`
|
||||||
|
tmux option. That can be done with `$ tmux show -g default-command`.
|
||||||
|
|
||||||
|
The value should NOT contain `&&` or `||` operators. If it does, simplify the
|
||||||
|
option so those operators are removed.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
- this will cause issues (notice the `&&` and `||` operators):
|
||||||
|
|
||||||
|
set -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL -l"
|
||||||
|
|
||||||
|
- this is ok:
|
||||||
|
|
||||||
|
set -g default-command "reattach-to-user-namespace -l $SHELL"
|
||||||
|
|
||||||
|
Related [bug](https://github.com/tmux-plugins/tmux-resurrect/issues/98).
|
||||||
|
|
||||||
|
Alternatively, you can let
|
||||||
|
[tmux-sensible](https://github.com/tmux-plugins/tmux-sensible)
|
||||||
|
handle this option in a cross-platform way and you'll have no problems.
|
||||||
|
Loading…
Reference in New Issue
Block a user