Increase the max history size for hel to 10000.

This commit is contained in:
Oleksandr Kozachuk
2023-01-07 13:55:37 +01:00
parent a180291e94
commit ccc318b2ad
+4 -1
View File
@@ -91,6 +91,7 @@ pub mod home {
pub mod editor { pub mod editor {
use crate::structs::LKErr; use crate::structs::LKErr;
use rustyline::error::ReadlineError; use rustyline::error::ReadlineError;
use rustyline::config::Configurer;
use std::sync::Arc; use std::sync::Arc;
use parking_lot::Mutex; use parking_lot::Mutex;
@@ -103,8 +104,10 @@ pub mod editor {
impl Editor { impl Editor {
pub fn new() -> EditorRef { pub fn new() -> EditorRef {
let mut editor = rustyline::Editor::<()>::new().unwrap();
editor.set_max_history_size(10000);
Arc::new(Mutex::new(Self { Arc::new(Mutex::new(Self {
editor: rustyline::Editor::<()>::new().unwrap(), editor: editor,
})) }))
} }