curses-menu
curses-menu copied to clipboard
A simple console menu system in python using the curses library
### Version 0.6.4 ### Operating System Linux ### Environment Python 3.7 and Python 3.10 ### What happened? Exception on import of CursesMenu: ```python from cursesmenu import CursesMenu --------------------------------------------------------------------------- ModuleNotFoundError Traceback...
missed vim like key bindings. h = quit j = down k = up l = select
Trying to use escape codes doesn't work as I would have hoped: ``` color_on = '\033[32m' color_off = '\033[39m' menu_item = MenuItem("{0}Menu Item{1}".format(color_on, color_off)) ``` Result: ``` 1 - ^[[32mMenu...
It'd be great to have a possibility to show menu in one curses window and in the other display something else, e. g. diagnostic messages. If I'm not mistaken, currently...
I believe feature is self-explainatory. If you have 10 items, then numbering would go `01` etc I could also attempt to provide a PR, but I haven't been in that...
For example I have similar menu structure: - MenuItem: - SubmenuItem - CommandItem After descending to CommandItem and running it I would like to exit menu totally and see stdout...
Being a relative new comer to python what would it take to create a multi-select menu item where I could choose more than one thing?
This introduces two option, to make the menu occupy less space, if desired. Please see the commit messages and the docs in the code for details.
### Version 0.6.4 ### Operating System Windows ### Environment Windows powershell ### What happened? When you call a function with FunctionItem, the screen clears, however any text shown from a...