Skip to content

Commit

Permalink
feat(commands): add log-open command
Browse files Browse the repository at this point in the history
  • Loading branch information
amaihoefner committed May 6, 2022
1 parent 495ba40 commit 18ced9b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions helix-term/src/commands/typed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,15 @@ fn open_config(
Ok(())
}

fn open_log(
cx: &mut compositor::Context,
_args: &[Cow<str>],
_event: PromptEvent,
) -> anyhow::Result<()> {
cx.editor.open(helix_loader::log_file(), Action::Replace)?;
Ok(())
}

fn refresh_config(
cx: &mut compositor::Context,
_args: &[Cow<str>],
Expand Down Expand Up @@ -1647,6 +1656,13 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
fun: open_config,
completer: None,
},
TypableCommand {
name: "log-open",
aliases: &[],
doc: "Open the helix log file.",
fun: open_log,
completer: None,
},
TypableCommand {
name: "pipe",
aliases: &[],
Expand Down

0 comments on commit 18ced9b

Please sign in to comment.