aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include/readline_buffer.h
Commit message (Collapse)AuthorAgeFilesLines
* simplewallet: lock console on inactivitymoneromooo-monero2019-08-281-0/+2
|
* readline_buffer: fix "cursor in prompt" bugmoneromooo-monero2018-10-121-0/+1
| | | | | It happens when readline displays a prompt just before switching to a shorter one
* move includes around to lessen overall loadmoneromooo-monero2017-12-161-2/+0
|
* Simplify readline supportHoward Chu2017-08-221-3/+3
| | | | And don't use std::mutex
* Construct on first use for completion_commandsJethro Grassie2017-08-161-11/+3
|
* Add various readline related fixesJethro Grassie2017-07-091-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
* readline_buffer: add a couple constmoneromooo-monero2017-06-211-2/+2
|
* Add readline support to clijethro2017-06-181-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.