windows-curses icon indicating copy to clipboard operation
windows-curses copied to clipboard

Windows Curses Python module

Results 26 windows-curses issues
Sort by recently updated
recently updated
newest added

Windows 10 up to date, python 3.8, windows-curses 2.1.0. All attempts to work with panels are failing for me. The usual failure is that my app just quietly dies and...

bug

I suspect that newin is perhaps defaulting beneath the main window while subwin is painted/overlaid on the curses standard screen. Is this expected behavior? I am running Windows 11 and...

question

windows-curses doesn't work properly in the integrated terminal of vscode. Arrowkeys are not detected. For more details: https://github.com/microsoft/vscode/issues/112405 I think it is an issue with vscode, but they blame it...

Hello, Is it possible to add windows-curses on conda-forge please?

enhancement

I've just tried installing windows-curses on Python 3.4, which is only available on Windows in GitHub Actions apparently, but it failed with "ERROR: No matching distribution found for windows-curses". This...

Happens only if the character provided as a *string*, not a character code. English is hard, see below. ```py import curses def main(stdscr): stdscr.hline(0, 0, "▓", 5); # would result...

bug

I have found two issues with the current release of windows-curses: 1. The color_content() function fails for any color number above 15, while in an *ix ncurses environment it returns...

bug

I have a python curses project trying to detect mouse wheel movements, and I understand that mouse wheel events by convention are reported as BUTTON4 and BUTTON5 events. I am...

question

These are new APIs that I added in python3.9, they are currently missing: https://github.com/python/cpython/pull/16938 currently this is breaking my text editor [`babi`](https://github.com/asottile/babi) on windows with a trace that looks like...

enhancement

Hello, I'm migrating ranger to make it support to run on Windows 7/10. But I got the "_curses.error: werase() returned ERR". I want to get the debug trace from PDCurses....

enhancement