mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Add :get-option command (#2231)
This commit is contained in:
parent
3f2bd7770e
commit
15db6031bb
@ -55,7 +55,8 @@
|
||||
| `:tutor` | Open the tutorial. |
|
||||
| `:goto`, `:g` | Go to line number. |
|
||||
| `:set-language`, `:lang` | Set the language of current buffer. |
|
||||
| `:set-option`, `:set` | Set a config option at runtime |
|
||||
| `:set-option`, `:set` | Set a config option at runtime. |
|
||||
| `:get-option`, `:get` | Get the current value of a config option. |
|
||||
| `:sort` | Sort ranges in selection. |
|
||||
| `:rsort` | Sort ranges in selection in reverse order. |
|
||||
| `:tree-sitter-subtree`, `:ts-subtree` | Display tree sitter subtree under cursor, primarily for debugging queries. |
|
||||
|
@ -928,9 +928,30 @@ pub(super) fn goto_line_number(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
// Fetch the current value of a config option and output as status.
|
||||
fn get_option(
|
||||
cx: &mut compositor::Context,
|
||||
args: &[Cow<str>],
|
||||
_event: PromptEvent,
|
||||
) -> anyhow::Result<()> {
|
||||
if args.len() != 1 {
|
||||
anyhow::bail!("Bad arguments. Usage: `:get key`");
|
||||
}
|
||||
|
||||
let key = &args[0].to_lowercase();
|
||||
let key_error = || anyhow::anyhow!("Unknown key `{}`", key);
|
||||
|
||||
let config = serde_json::to_value(&cx.editor.config().clone()).unwrap();
|
||||
let pointer = format!("/{}", key.replace('.', "/"));
|
||||
let value = config.pointer(&pointer).ok_or_else(key_error)?;
|
||||
|
||||
cx.editor.set_status(value.to_string());
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Change config at runtime. Access nested values by dot syntax, for
|
||||
/// example to disable smart case search, use `:set search.smart-case false`.
|
||||
fn setting(
|
||||
fn set_option(
|
||||
cx: &mut compositor::Context,
|
||||
args: &[Cow<str>],
|
||||
_event: PromptEvent,
|
||||
@ -1487,8 +1508,15 @@ fn pipe(
|
||||
TypableCommand {
|
||||
name: "set-option",
|
||||
aliases: &["set"],
|
||||
doc: "Set a config option at runtime",
|
||||
fun: setting,
|
||||
doc: "Set a config option at runtime.",
|
||||
fun: set_option,
|
||||
completer: Some(completers::setting),
|
||||
},
|
||||
TypableCommand {
|
||||
name: "get-option",
|
||||
aliases: &["get"],
|
||||
doc: "Get the current value of a config option.",
|
||||
fun: get_option,
|
||||
completer: Some(completers::setting),
|
||||
},
|
||||
TypableCommand {
|
||||
|
Loading…
Reference in New Issue
Block a user