Skip to content
Snippets Groups Projects
Commit cc23d266 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

push add_history to readline history handler class

parent d31ab146
No related branches found
No related tags found
1 merge request!50aql: basic tab-completion using readline
......@@ -8,9 +8,7 @@
#ifndef _HISTORY_REGISTER_H_
#define _HISTORY_REGISTER_H_
 
#include <alib/string>
#include <readline/history.h>
#include "ReadlinePromptHistory.h"
 
#include <lexer/Lexer.h>
 
......@@ -26,7 +24,7 @@ public:
if ( m_allowHistory ) {
std::string line = m_lexer.getLine ( );
ext::trim ( line );
add_history ( line.c_str ( ) );
ReadlinePromptHistory::addHistory ( line );
}
}
};
......
......@@ -86,6 +86,10 @@ public:
write_history ( history_file.c_str ( ) );
}
 
static void addHistory ( const std::string & line ) {
add_history ( line.c_str ( ) );
}
};
 
#endif /* _READLINE_PROMPT_HISTORY_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment