illwill icon indicating copy to clipboard operation
illwill copied to clipboard

A curses inspired simple cross-platform console library for Nim

Results 11 illwill issues
Sort by recently updated
recently updated
newest added

Couldn't figure out why it doesn't work, but printing a newline to stdout seems to work around the issue. Not sure if you would want to do this or not....

Hello! I am creating a TUI application that displays Japanese using illwill. However, I am having a problem with displaying Japanese characters with illwill, and I am wondering what to...

I think there might be a bug in the `getKey` implementation for OS X (it appears the same implementation applies for linux). If two (or more) keys are pressed between...

Not really a bug, but I get something like: ``` /home/user/e.nim(71) e /home/user/e.nim(66) main /home/user/e.nim(44) updateScreen /usr/lib/nim/system/fatal.nim(49) sysFatal Error: unhandled exception: value out of range: -1 notin 0 .. 9223372036854775807...

I don't know whether this is only for me or everyone on Windows, but I think it is probably a problem that affects many users. And, its performance drawback is...

Hi, thanks for this project. I'm excited to use it. Please take a look at this asciicast: https://asciinema.org/a/352660 Notice how the action happens below the prompt. I'd like to do...

Is it possible to rollback nim's minimal version to 1.6.10 ? I have ttop tool (https://github.com/inv2004/ttop) which has your library in deps, but arch distro contains 1.6.10 only in extra...

it would be nice when illwill also supports unicode. Looking at the (posix) code part it also could be simple to capture them eg: https://www.utf8-chartable.de/ the german letter: "Ö" is...

With the two mouse demo's I have to press the Alt key to get any mouse action working. Ctrl also works except with the scroll wheel, then it zooms.

Initial example in readme: ```nim while true: var key = getKey() case key of Key.None: discard of Key.Escape, Key.Q: exitProc() else: tb.write(8, 4, ' '.repeat(31)) tb.write(2, 4, resetStyle, "Key pressed:...