Add readline improvements
Color prompt now working and no reprompting on exit command.
This commit is contained in:
parent
0c6ea4f8a6
commit
fdccf7e6c3
2 changed files with 10 additions and 3 deletions
|
@ -315,7 +315,11 @@ namespace epee
|
|||
if (!m_prompt.empty())
|
||||
{
|
||||
#ifdef HAVE_READLINE
|
||||
m_stdin_reader.get_readline_buffer().set_prompt(m_prompt);
|
||||
std::string color_prompt = "\001\033[1;33m\002" + m_prompt;
|
||||
if (' ' != m_prompt.back())
|
||||
color_prompt += " ";
|
||||
color_prompt += "\001\033[0m\002";
|
||||
m_stdin_reader.get_readline_buffer().set_prompt(color_prompt);
|
||||
#else
|
||||
epee::set_console_color(epee::console_color_yellow, true);
|
||||
std::cout << m_prompt;
|
||||
|
|
|
@ -168,8 +168,11 @@ static int handle_enter(int x, int y)
|
|||
}
|
||||
free(line);
|
||||
|
||||
rl_set_prompt(last_prompt.c_str());
|
||||
rl_redisplay();
|
||||
if(last_line != "exit")
|
||||
{
|
||||
rl_set_prompt(last_prompt.c_str());
|
||||
rl_redisplay();
|
||||
}
|
||||
|
||||
rl_done = 1;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue