Increase the max history size for hel to 10000.
This commit is contained in:
+4
-1
@@ -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,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user