mirror of
https://github.com/jarun/nnn.git
synced 2024-11-27 13:21:29 +00:00
Updated Troubleshooting (markdown)
parent
d9836bbf62
commit
6ea4a3a0fb
|
@ -22,10 +22,19 @@ By default tmux advertises 8-color support. To show icons in tmux add the follow
|
||||||
|
|
||||||
set -g default-terminal "screen-256color"
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
If the <kbd>Ecs</kbd> key isn't working as expected, add the following in `.tmux.conf`:
|
If the <kbd>Esc</kbd> key isn't working as expected, add the following in `.tmux.conf`:
|
||||||
|
|
||||||
set -g escape-time 0
|
set -g escape-time 0
|
||||||
|
|
||||||
|
To start `nnn` within tmux use a shell function:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
n ()
|
||||||
|
{
|
||||||
|
tmux new-session nnn -acdDEnQrux $@
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Broken control key
|
## Broken control key
|
||||||
|
|
||||||
If a Ctrl-key combination is not working, check if it's masked due to terminal line settings:
|
If a Ctrl-key combination is not working, check if it's masked due to terminal line settings:
|
||||||
|
|
Loading…
Reference in a new issue