Update plugins/tmux-autoattach/README.md

Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
This commit is contained in:
chopnico
2021-12-24 07:20:34 -05:00
committed by Koichi Murase
parent e327e66c02
commit fdc66ccc59

View File

@@ -36,5 +36,7 @@ This tmux plugin will automatically attach a tmux session to your shell session.
**Multiple**
```bash
{ [ "$DISPLAY" ] || [ "$SSH" ]; } && plugins+=(tmux-autoattach)
if [ "$DISPLAY" ] || [ "$SSH" ]; then
plugins+=(tmux-autoattach)
fi
```