diff --git a/crates/nu-cli/src/prompt_update.rs b/crates/nu-cli/src/prompt_update.rs index 95280af828..63dd9ce19d 100644 --- a/crates/nu-cli/src/prompt_update.rs +++ b/crates/nu-cli/src/prompt_update.rs @@ -30,30 +30,21 @@ pub(crate) const TRANSIENT_PROMPT_MULTILINE_INDICATOR: &str = pub(crate) const PRE_PROMPT_MARKER: &str = "\x1b]133;A\x1b\\"; pub(crate) const POST_PROMPT_MARKER: &str = "\x1b]133;B\x1b\\"; pub(crate) const PRE_EXECUTION_MARKER: &str = "\x1b]133;C\x1b\\"; -#[allow(dead_code)] pub(crate) const POST_EXECUTION_MARKER_PREFIX: &str = "\x1b]133;D;"; -#[allow(dead_code)] pub(crate) const POST_EXECUTION_MARKER_SUFFIX: &str = "\x1b\\"; // OSC633 is the same as OSC133 but specifically for VSCode pub(crate) const VSCODE_PRE_PROMPT_MARKER: &str = "\x1b]633;A\x1b\\"; pub(crate) const VSCODE_POST_PROMPT_MARKER: &str = "\x1b]633;B\x1b\\"; -#[allow(dead_code)] pub(crate) const VSCODE_PRE_EXECUTION_MARKER: &str = "\x1b]633;C\x1b\\"; -#[allow(dead_code)] //"\x1b]633;D;{}\x1b\\" pub(crate) const VSCODE_POST_EXECUTION_MARKER_PREFIX: &str = "\x1b]633;D;"; -#[allow(dead_code)] pub(crate) const VSCODE_POST_EXECUTION_MARKER_SUFFIX: &str = "\x1b\\"; -#[allow(dead_code)] //"\x1b]633;E;{}\x1b\\" pub(crate) const VSCODE_COMMANDLINE_MARKER_PREFIX: &str = "\x1b]633;E;"; -#[allow(dead_code)] pub(crate) const VSCODE_COMMANDLINE_MARKER_SUFFIX: &str = "\x1b\\"; -#[allow(dead_code)] // "\x1b]633;P;Cwd={}\x1b\\" pub(crate) const VSCODE_CWD_PROPERTY_MARKER_PREFIX: &str = "\x1b]633;P;Cwd="; -#[allow(dead_code)] pub(crate) const VSCODE_CWD_PROPERTY_MARKER_SUFFIX: &str = "\x1b\\"; pub(crate) const RESET_APPLICATION_MODE: &str = "\x1b[?1l"; diff --git a/crates/nu-cli/src/reedline_config.rs b/crates/nu-cli/src/reedline_config.rs index 4c1594389e..4012876ac0 100644 --- a/crates/nu-cli/src/reedline_config.rs +++ b/crates/nu-cli/src/reedline_config.rs @@ -711,7 +711,6 @@ pub(crate) fn create_keybindings(config: &Config) -> Result Result, mode: &Value, keybinding: &ParsedKeybinding, config: &Config, @@ -755,7 +752,6 @@ fn add_keybinding( Value::List { vals, .. } => { for inner_mode in vals { add_keybinding( - name, inner_mode, keybinding, config, diff --git a/crates/nu-command/src/progress_bar.rs b/crates/nu-command/src/progress_bar.rs index db4d4e23b1..b700c1e2d9 100644 --- a/crates/nu-command/src/progress_bar.rs +++ b/crates/nu-command/src/progress_bar.rs @@ -45,11 +45,6 @@ impl NuProgressBar { self.pb.set_position(bytes_processed); } - #[allow(dead_code)] - pub fn finished_msg(&self, msg: String) { - self.pb.finish_with_message(msg); - } - pub fn abandoned_msg(&self, msg: String) { self.pb.abandon_with_message(msg); } diff --git a/crates/nu-command/src/strings/guess_width.rs b/crates/nu-command/src/strings/guess_width.rs index 59d666dd02..2eefb7d3f0 100644 --- a/crates/nu-command/src/strings/guess_width.rs +++ b/crates/nu-command/src/strings/guess_width.rs @@ -291,42 +291,39 @@ fn positions_helper(blanks: &[usize], min_lines: usize) -> Vec { pos } -// to_rows returns rows separated by columns. -#[allow(dead_code)] -fn to_rows(lines: Vec, pos: Vec, trim_space: bool) -> Vec> { - let mut rows: Vec> = Vec::with_capacity(lines.len()); - for line in lines { - let columns = split(&line, &pos, trim_space); - rows.push(columns); - } - rows -} - -// to_table parses a slice of lines and returns a table. -#[allow(dead_code)] -pub fn to_table(lines: Vec, header: usize, trim_space: bool) -> Vec> { - let pos = positions(&lines, header, 2); - to_rows(lines, pos, trim_space) -} - -// to_table_n parses a slice of lines and returns a table, but limits the number of splits. -#[allow(dead_code)] -pub fn to_table_n( - lines: Vec, - header: usize, - num_split: usize, - trim_space: bool, -) -> Vec> { - let mut pos = positions(&lines, header, 2); - if pos.len() > num_split { - pos.truncate(num_split); - } - to_rows(lines, pos, trim_space) -} - #[cfg(test)] mod tests { - use super::{to_table, to_table_n, GuessWidth}; + use super::*; + + /// to_rows returns rows separated by columns. + fn to_rows(lines: Vec, pos: Vec, trim_space: bool) -> Vec> { + let mut rows: Vec> = Vec::with_capacity(lines.len()); + for line in lines { + let columns = split(&line, &pos, trim_space); + rows.push(columns); + } + rows + } + + /// to_table parses a slice of lines and returns a table. + pub fn to_table(lines: Vec, header: usize, trim_space: bool) -> Vec> { + let pos = positions(&lines, header, 2); + to_rows(lines, pos, trim_space) + } + + /// to_table_n parses a slice of lines and returns a table, but limits the number of splits. + pub fn to_table_n( + lines: Vec, + header: usize, + num_split: usize, + trim_space: bool, + ) -> Vec> { + let mut pos = positions(&lines, header, 2); + if pos.len() > num_split { + pos.truncate(num_split); + } + to_rows(lines, pos, trim_space) + } #[test] fn test_guess_width_ps_trim() { diff --git a/crates/nu-system/src/windows.rs b/crates/nu-system/src/windows.rs index 59e2a77751..cc0ab99559 100644 --- a/crates/nu-system/src/windows.rs +++ b/crates/nu-system/src/windows.rs @@ -471,7 +471,6 @@ unsafe fn null_terminated_wchar_to_string(slice: &[u16]) -> String { } } -#[allow(clippy::uninit_vec)] unsafe fn get_process_data( handle: HANDLE, ptr: *const c_void, @@ -518,7 +517,6 @@ unsafe fn get_region_size(handle: HANDLE, ptr: *const c_void) -> Result