# Description Allows `Stack` to have a modified local `Config`, which is updated immediately when `$env.config` is assigned to. This means that even within a script, commands that come after `$env.config` changes will always see those changes in `Stack::get_config()`. Also fixed a lot of cases where `engine_state.get_config()` was used even when `Stack` was available. Closes #13324. # User-Facing Changes - Config changes apply immediately after the assignment is executed, rather than whenever config is read by a command that needs it. - Potentially slower performance when executing a lot of lines that change `$env.config` one after another. Recommended to get `$env.config` into a `mut` variable first and do modifications, then assign it back. - Much faster performance when executing a script that made modifications to `$env.config`, as the changes are only parsed once. # Tests + Formatting All passing. # After Submitting - [ ] release notes
77 lines
1.9 KiB
Rust
77 lines
1.9 KiB
Rust
use std::sync::Arc;
|
|
|
|
use nu_engine::command_prelude::*;
|
|
use reedline::{Highlighter, StyledText};
|
|
|
|
#[derive(Clone)]
|
|
pub struct NuHighlight;
|
|
|
|
impl Command for NuHighlight {
|
|
fn name(&self) -> &str {
|
|
"nu-highlight"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("nu-highlight")
|
|
.category(Category::Strings)
|
|
.input_output_types(vec![(Type::String, Type::String)])
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Syntax highlight the input string."
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["syntax", "color", "convert"]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let head = call.head;
|
|
|
|
let signals = engine_state.signals();
|
|
|
|
let highlighter = crate::NuHighlighter {
|
|
engine_state: Arc::new(engine_state.clone()),
|
|
stack: Arc::new(stack.clone()),
|
|
};
|
|
|
|
input.map(
|
|
move |x| match x.coerce_into_string() {
|
|
Ok(line) => {
|
|
let highlights = highlighter.highlight(&line, line.len());
|
|
Value::string(highlights.render_simple(), head)
|
|
}
|
|
Err(err) => Value::error(err, head),
|
|
},
|
|
signals,
|
|
)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Describe the type of a string",
|
|
example: "'let x = 3' | nu-highlight",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
/// A highlighter that does nothing
|
|
///
|
|
/// Used to remove highlighting from a reedline instance
|
|
/// (letting NuHighlighter structs be dropped)
|
|
#[derive(Default)]
|
|
pub struct NoOpHighlighter {}
|
|
|
|
impl Highlighter for NoOpHighlighter {
|
|
fn highlight(&self, _line: &str, _cursor: usize) -> reedline::StyledText {
|
|
StyledText::new()
|
|
}
|
|
}
|