|
|
|
|
|
by nox100
917 days ago
|
|
This looks really interesting! My first thought is, how often does all the structure you added get in the way? With plain text (most terminals), it's easy to grab any chunk of text. With structured text, UI elements often get in the way. As an example, in Chrome's devtools console, it's frustrating that for (let i = 0; i < 5; ++i) { console.log(i); }
produces this 0 VM45:1
1 VM45:1
2 VM45:1
3 VM45:1
4 VM45:1
instead of this 0
1
2
3
4
When I try to copy the text. Does Wave run into this kind if issue? |
|