two new FAQs

This commit is contained in:
nick black 2020-10-10 21:09:50 -04:00
parent fbd3d7fc7f
commit f39de36b4c
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -382,6 +382,12 @@ If things break or seem otherwise lackluster, **please** consult the
* *Q*: I ran `notcurses-demo` with a single demo, but my summary numbers don't match that demo's numbers, you charlatan.
* *A*: `notcurses-demo` renders several frames beyond the actual demos.
* *Q*: When my program exits, I don't have a cursor/text is invisible/colors are weird.
* *A*: Ensure you're calling `notcurses_stop()`/`ncdirect_stop()` on all exit paths, including fatal signals.
* *Q*: How can I use Direct Mode in conjunction with libreadline?
* *A*: Pass `NCDIRECT_OPTION_CBREAK` to `ncdirect_init()`, call `ncdirect_init()` prior to calling `rl_prep_terminal()`, and call `rl_deprep_terminal()` before calling `ncdirect_stop()`.
## Supplemental material
### Useful links