I am not suicidal but jesus christ, ncurses is great at making people lose their minds. I cannot imagine programming with ncurses on C instead of Python.
@loke My issues with it were more about Python's specific wrapper, I read that on C at least, getch() does not return a number but the actual character, meanwhile on Python you need to run curses.ascii.unctrl() on the output of getch() before you do any actual handling
@oklomsy You can make a wrapper over a wrapper! I think in Python it's even possible to replace the func with original name with your implementation that uses the original function 🤪 @loke
@oklomsy Well, this works if you only have to do it once! Otherwise it might be better to make your own wrapper. And put it on GitHub. And waste your time on maintaining it because someone actually started using it 🤣 @loke