Increase CLI command history buffer size to 256
This commit is contained in:
parent
a71893adba
commit
bd3036df8a
1 changed files with 5 additions and 0 deletions
|
|
@ -56,6 +56,11 @@ void cli::send_notice( uint64_t callback_id, variants args /* = variants() */ )
|
||||||
void cli::start()
|
void cli::start()
|
||||||
{
|
{
|
||||||
cli_commands() = get_method_names(0);
|
cli_commands() = get_method_names(0);
|
||||||
|
|
||||||
|
#ifdef HAVE_EDITLINE
|
||||||
|
el_hist_size = 256;
|
||||||
|
#endif
|
||||||
|
|
||||||
_run_complete = fc::async( [&](){ run(); } );
|
_run_complete = fc::async( [&](){ run(); } );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue