Updated Troubleshooting (markdown)

Terminator X 2021-07-14 18:29:43 +05:30
parent fa8fa99fbc
commit 7fb025cf4c
1 changed files with 6 additions and 3 deletions

@ -36,11 +36,14 @@ If the <kbd>Esc</kbd> key isn't working as expected, add the following in `.tmux
To start `nnn` within tmux use a shell function:
```bash
```sh
n ()
{
# use option -a for previews
tmux new-session nnn -a $@
if [ -n "$TMUX" ]; then
nnn -a $@
else
tmux new-session nnn -a $@
fi
}
```