Skip to content

Commit

Permalink
Implement show_directory command
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Flandrin committed Jun 21, 2021
1 parent e161ac4 commit eb8c1c9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1328,6 +1328,13 @@ mod cmd {
}
}

fn show_directory(editor: &mut Editor, args: &[&str], _: PromptEvent) {
match std::env::current_dir() {
Ok(cwd) => editor.set_status(format!("Current working directory is {}", cwd.display())),
Err(e) => editor.set_error(format!("Couldn't get the current working directory: {}", e)),
}
}

pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
TypableCommand {
name: "quit",
Expand Down Expand Up @@ -1497,6 +1504,13 @@ mod cmd {
fun: change_directory,
completer: Some(completers::directory),
},
TypableCommand {
name: "show-directory",
alias: Some("pwd"),
doc: "Show the current working directory.",
fun: show_directory,
completer: None,
},
];

pub static COMMANDS: Lazy<HashMap<&'static str, &'static TypableCommand>> = Lazy::new(|| {
Expand Down

0 comments on commit eb8c1c9

Please sign in to comment.