ncurses icon indicating copy to clipboard operation
ncurses copied to clipboard

Ncurses bindings for Crystal

Results 7 ncurses issues
Sort by recently updated
recently updated
newest added

I tried ``` require "ncurses" NCurses.start NCurses.print "Hello world!" puts "test" NCurses.end ``` On a Mac , but it only prints "test"

I was running into some weirdness while running the input example where pressing `Backspace` on my keyboard resulted in `^?` being printed. After doing some digging, I found that the...

It seems that the result of `get_char` does not agree with `NCurses::print` if they are multi-byte unicode codepoints in `NCurses::Key`. Key probably needs specific `to_char` and `to_s` implementations. You can...

Hello as I pointed in #21 issue I'm having trouble with colors in a 256 X-term-color terminal, here are some small modifications, that allow use UInt8 values for `init_color_pair` directly....

Hello I'm new to crystal and NCurses so maybe maybe is something wrong with my code ## Objective use all 256 colors of the terminal or create a custom color...

While using `NCurses.keypad true`, `NCurses::Key::Enter` provides a value of 343, however if the enter key is read by `NCurses.get_char` a value of 10 is returned. Other keys such as the...