This commit is contained in:
2026-04-16 10:17:03 -06:00
parent ff3419a714
commit d906713d7d
82 changed files with 14886 additions and 3310 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
use super::REPL_COMMANDS;
use crate::{config::GlobalConfig, utils::NO_COLOR};
use crate::utils::NO_COLOR;
use nu_ansi_term::{Color, Style};
use reedline::{Highlighter, StyledText};
@@ -11,7 +11,7 @@ const MATCH_COLOR: Color = Color::Green;
pub struct ReplHighlighter;
impl ReplHighlighter {
pub fn new(_config: &GlobalConfig) -> Self {
pub fn new() -> Self {
Self
}
}