mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
Merge branch 'master' of github.com:dankamongmen/notcurses
This commit is contained in:
commit
b7e8fda3b1
@ -179,11 +179,10 @@ returned at a time (as opposed to an entire EGC).
|
|||||||
```c
|
```c
|
||||||
// All input is currently taken from stdin, though this will likely change. We
|
// All input is currently taken from stdin, though this will likely change. We
|
||||||
// attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire
|
// attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire
|
||||||
// Extended Grapheme Cluster (despite use of the cell object, which encodes an
|
// Extended Grapheme Cluster. It is also possible that we will read a special
|
||||||
// entire EGC). It is also possible that we will read a special keypress, i.e.
|
// keypress, i.e. anything that doesn't correspond to a Unicode codepoint (e.g.
|
||||||
// anything that doesn't correspond to a Unicode codepoint (e.g. arrow keys,
|
// arrow keys, function keys, screen resize events, etc.). These are mapped
|
||||||
// function keys, screen resize events, etc.). These are mapped into Unicode's
|
// into Unicode's Supplementary Private Use Area-B, starting at U+100000.
|
||||||
// Supplementary Private Use Area-B, starting at U+100000.
|
|
||||||
//
|
//
|
||||||
// notcurses_getc() and notcurses_getc_nblock() are both nonblocking.
|
// notcurses_getc() and notcurses_getc_nblock() are both nonblocking.
|
||||||
// notcurses_getc_blocking() blocks until a codepoint or special key is read,
|
// notcurses_getc_blocking() blocks until a codepoint or special key is read,
|
||||||
|
@ -138,11 +138,10 @@ API int notcurses_render(struct notcurses* nc);
|
|||||||
|
|
||||||
// All input is currently taken from stdin, though this will likely change. We
|
// All input is currently taken from stdin, though this will likely change. We
|
||||||
// attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire
|
// attempt to read a single UTF8-encoded Unicode codepoint, *not* an entire
|
||||||
// Extended Grapheme Cluster (despite use of the cell object, which encodes an
|
// Extended Grapheme Cluster. It is also possible that we will read a special
|
||||||
// entire EGC). It is also possible that we will read a special keypress, i.e.
|
// keypress, i.e. anything that doesn't correspond to a Unicode codepoint (e.g.
|
||||||
// anything that doesn't correspond to a Unicode codepoint (e.g. arrow keys,
|
// arrow keys, function keys, screen resize events, etc.). These are mapped
|
||||||
// function keys, screen resize events, etc.). These are mapped into Unicode's
|
// into Unicode's Supplementary Private Use Area-B, starting at U+100000.
|
||||||
// Supplementary Private Use Area-B, starting at U+100000.
|
|
||||||
//
|
//
|
||||||
// notcurses_getc() and notcurses_getc_nblock() are both nonblocking.
|
// notcurses_getc() and notcurses_getc_nblock() are both nonblocking.
|
||||||
// notcurses_getc_blocking() blocks until a codepoint or special key is read,
|
// notcurses_getc_blocking() blocks until a codepoint or special key is read,
|
||||||
|
Loading…
Reference in New Issue
Block a user