1
1
mirror of https://github.com/jarun/nnn.git synced 2024-11-22 15:20:59 +03:00

Updated Troubleshooting (markdown)

Mischievous Meerkat 2019-11-20 02:25:21 +05:30
parent 3299d2dfd4
commit 441995b08a

@ -2,6 +2,18 @@
`nnn` may not handle keypresses correctly when used with tmux (see issue #104 for more details). Set `TERM=xterm-256color` to address it.
## Control (`^`) keybind not working
Some control keybinds may not work if they are mapped by `stty`. To confirm, run `stty -a` and look for keybind conflicts. Some common ones are: `^Q` (start), `^S` (stop), `^V` (lnext).
To remove the `stty` mapping:
```
stty start undef
stty stop undef
stty lnext undef
```
## BSD terminal issue
**TLDR:** On releases previous to v2.7, use the keybind <kbd>K</kbd> to toggle selection if you are having issues with <kbd>^Y</kbd>.