git mv TERMS.md TERMINALS.md

pull/1321/head
nick black 3 years ago
parent 3aae597ddd
commit b0301c834d
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -33,7 +33,7 @@ found in [src/demo/](https://github.com/dankamongmen/notcurses/tree/master/src/d
**If you're running Notcurses applications in a Docker, please consult
"[Environment notes](#environment-notes)" below.** I track some
[capabilities of terminal emulators](TERMS.md), and also maintain a list of
[capabilities of terminal emulators](TERMINALS.md), and also maintain a list of
[other TUI libraries](OTHERS.md).
![Linux](https://img.shields.io/badge/-Linux-grey?logo=linux)

@ -106,7 +106,7 @@ draw_block(struct ncplane* nn, uint32_t blockstart){
for(z = 0 ; z < CHUNKSIZE ; ++z){
wchar_t w = blockstart + chunk * CHUNKSIZE + z;
char utf8arr[MB_CUR_MAX * 3 + 5];
// problematic characters FIXME (see TERMS.md)
// problematic characters FIXME (see TERMINALS.md)
if(w == 0x070f || w == 0x08e2 || w == 0x06dd){
strcpy(utf8arr, " ");
}else if(wcwidth(w) >= 1 && iswgraph(w)){

Loading…
Cancel
Save