forked from extern/nushell
# Description As part of the refactor to split spans off of Value, this moves to using helper functions to create values, and using `.span()` instead of matching span out of Value directly. Hoping to get a few more helping hands to finish this, as there are a lot of commands to update :) # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. --> --------- Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com> Co-authored-by: WindSoilder <windsoilder@outlook.com>
119 lines
3.5 KiB
Rust
119 lines
3.5 KiB
Rust
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack},
|
|
record, Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Span, Type,
|
|
Value,
|
|
};
|
|
use reedline::{
|
|
get_reedline_edit_commands, get_reedline_keybinding_modifiers, get_reedline_keycodes,
|
|
get_reedline_prompt_edit_modes, get_reedline_reedline_events,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct KeybindingsList;
|
|
|
|
impl Command for KeybindingsList {
|
|
fn name(&self) -> &str {
|
|
"keybindings list"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))])
|
|
.switch("modifiers", "list of modifiers", Some('m'))
|
|
.switch("keycodes", "list of keycodes", Some('k'))
|
|
.switch("modes", "list of edit modes", Some('o'))
|
|
.switch("events", "list of reedline event", Some('e'))
|
|
.switch("edits", "list of edit commands", Some('d'))
|
|
.category(Category::Platform)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"List available options that can be used to create keybindings."
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Get list of key modifiers",
|
|
example: "keybindings list -m",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Get list of reedline events and edit commands",
|
|
example: "keybindings list -e -d",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Get list with all the available options",
|
|
example: "keybindings list",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
_engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let records = if call.named_len() == 0 {
|
|
let all_options = ["modifiers", "keycodes", "edits", "modes", "events"];
|
|
all_options
|
|
.iter()
|
|
.flat_map(|argument| get_records(argument, call.head))
|
|
.collect()
|
|
} else {
|
|
call.named_iter()
|
|
.flat_map(|(argument, _, _)| get_records(argument.item.as_str(), call.head))
|
|
.collect()
|
|
};
|
|
|
|
Ok(Value::list(records, call.head).into_pipeline_data())
|
|
}
|
|
}
|
|
|
|
fn get_records(entry_type: &str, span: Span) -> Vec<Value> {
|
|
let values = match entry_type {
|
|
"modifiers" => get_reedline_keybinding_modifiers().sorted(),
|
|
"keycodes" => get_reedline_keycodes().sorted(),
|
|
"edits" => get_reedline_edit_commands().sorted(),
|
|
"modes" => get_reedline_prompt_edit_modes().sorted(),
|
|
"events" => get_reedline_reedline_events().sorted(),
|
|
_ => Vec::new(),
|
|
};
|
|
|
|
values
|
|
.iter()
|
|
.map(|edit| edit.split('\n'))
|
|
.flat_map(|edit| edit.map(|edit| convert_to_record(edit, entry_type, span)))
|
|
.collect()
|
|
}
|
|
|
|
fn convert_to_record(edit: &str, entry_type: &str, span: Span) -> Value {
|
|
Value::record(
|
|
record! {
|
|
"type" => Value::string(entry_type, span),
|
|
"name" => Value::string(edit, span),
|
|
},
|
|
span,
|
|
)
|
|
}
|
|
|
|
// Helper to sort a vec and return a vec
|
|
trait SortedImpl {
|
|
fn sorted(self) -> Self;
|
|
}
|
|
|
|
impl<E> SortedImpl for Vec<E>
|
|
where
|
|
E: std::cmp::Ord,
|
|
{
|
|
fn sorted(mut self) -> Self {
|
|
self.sort();
|
|
self
|
|
}
|
|
}
|