diff options
author | Jethro Grassie <jtg@xtrabass.com> | 2017-07-07 15:40:32 -0400 |
---|---|---|
committer | Jethro Grassie <jtg@xtrabass.com> | 2017-07-09 09:50:04 -0400 |
commit | 6955976b2d3f25205fc9fd065744d69ba64cccfa (patch) | |
tree | e50668c98406c0466883839c65e0c5ee7392c2f2 /contrib/epee/include/console_handler.h | |
parent | Merge pull request #2130 (diff) | |
download | monero-6955976b2d3f25205fc9fd065744d69ba64cccfa.tar.xz |
Add various readline related fixes
- 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
Diffstat (limited to 'contrib/epee/include/console_handler.h')
-rw-r--r-- | contrib/epee/include/console_handler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h index 6832f2ea1..e780ad4de 100644 --- a/contrib/epee/include/console_handler.h +++ b/contrib/epee/include/console_handler.h @@ -374,6 +374,9 @@ namespace epee } else { +#ifdef HAVE_READLINE + rdln::suspend_readline pause_readline; +#endif std::cout << "unknown command: " << command << std::endl; std::cout << usage; } @@ -477,6 +480,9 @@ namespace epee lookup::mapped_type & vt = m_command_handlers[cmd]; vt.first = hndlr; vt.second = usage; +#ifdef HAVE_READLINE + rdln::readline_buffer::add_completion(cmd); +#endif } bool process_command_vec(const std::vector<std::string>& cmd) |