diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2018-11-23 06:59:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 06:59:31 +0530 |
commit | 897817a6774d64a6022d906bd9248762c609ac0e (patch) | |
tree | f05c44ffa027dfa7a1755d7879fe88be1799d398 /README.md | |
parent | ea3e0af1affccf6293f7f65a63ea91459117f2f2 (diff) | |
parent | 458f12a97987af67831b1f33730ddc16bcb4ff04 (diff) | |
download | nnn-897817a6774d64a6022d906bd9248762c609ac0e.tar.gz |
Merge pull request #131 from Gumnos/Gumnos-dsusp-doc-patch-1
Annotate ^Y/DSUSP issue on BSDs caused by `stty`
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -504,6 +504,10 @@ Enable volume management in your DE file manager and set removable drives or med `nnn` might not handle keypresses correctly when used with tmux (see issue #104 for more details). Set `TERM=xterm-256color` to address it. +#### BSD terminal issue + +By default in OpenBSD & FreeBSD, `stty` maps `^Y` to `DSUSP`. This means that typing `^Y` will suspend `nnn` as if you typed `^Z` (you can bring `nnn` back to the foreground by issuing `fg`) instead of entering multi-copy mode. You can check this with `stty -a`. If it includes the text "`dsusp = ^Y`", issuing `stty dsusp undef` will disable this `DSUSP` and let `nnn` receive the `^Y` instead. + #### WHY FORK? `nnn` was initially forked from [noice](http://git.2f30.org/noice/) but is significantly [different](https://github.com/jarun/nnn/wiki/nnn-vs.-noice) today. I chose to fork because: |