Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-08-28 | simplewallet: lock console on inactivity | moneromooo-monero | 1 | -0/+2 | |
2018-10-12 | readline_buffer: fix "cursor in prompt" bug | moneromooo-monero | 1 | -0/+1 | |
It happens when readline displays a prompt just before switching to a shorter one | |||||
2017-12-16 | move includes around to lessen overall load | moneromooo-monero | 1 | -2/+0 | |
2017-08-22 | Simplify readline support | Howard Chu | 1 | -3/+3 | |
And don't use std::mutex | |||||
2017-08-16 | Construct on first use for completion_commands | Jethro Grassie | 1 | -11/+3 | |
2017-07-09 | Add various readline related fixes | Jethro Grassie | 1 | -0/+13 | |
- Add missing unbind key - Fix colored messages - Add command completion - Preserve last command input - Fix cursor position issues - Fix trailing whitespace in commands - Synchronize set_prompt | |||||
2017-06-21 | readline_buffer: add a couple const | moneromooo-monero | 1 | -2/+2 | |
2017-06-18 | Add readline support to cli | jethro | 1 | -0/+40 | |
This PR adds readline support to the daemon and monero-wallet-cli. Only GNU readline is supported (e.g. not libedit) and there are cmake checks to ensure this. There is a cmake variable, Readline_ROOT_DIR that can specify a directory to find readline, otherwise some default paths are searched. There is also a cmake option, USE_READLINE, that defaults to ON. If set to ON, if readline is not found, the build continues but without readline support. One negative side effect of using readline is that the color prompt in the wallet-cli now has no color and just uses terminal default. I know how to fix this but it's quite a big change so will tackle another time. |