From 945b560dc2f3cd1ba82f6845ec7dd313013ce4bf Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 10 Apr 2021 01:27:15 -0400 Subject: [PATCH] mention direct mode in CURSES document --- doc/CURSES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/CURSES.md b/doc/CURSES.md index 23904ce45..7edbc02e0 100644 --- a/doc/CURSES.md +++ b/doc/CURSES.md @@ -13,7 +13,8 @@ might surprise NCURSES programmers: * There is no distinct `PANEL` type. The z-buffer is a fundamental property, and all drawable surfaces are ordered along the z axis. There is no equivalent to `update_panels()`. -* Scrolling is disabled by default, and cannot be globally enabled. +* Scrolling is disabled by default, and cannot be globally enabled (but + see Direct Mode). * The Curses `cchar_t` has a fixed-size array of `wchar_t`. The Notcurses `cell` instead supports a UTF-8 encoded extended grapheme cluster of arbitrary length. The only supported encodings are ASCII via `ANSI_X3.4-1968`