Skip to content

Commit

Permalink
cleanup help output
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Dahan committed Dec 8, 2020
1 parent 205ffff commit d820dcf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zr"
version = "1.0.0"
version = "1.0.2"
authors = ["Jonathan Dahan <[email protected]>"]
description = "quick, simple zsh package manager"
readme = "readme.md"
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.0.2
* cleanup help output

# 1.0.1
* add `functions` directories to fpath if functions are found
* updated dependencies
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

Quick, simple zsh plugin manager

zr 1.0.0
by Jonathan Dahan <github@jonathan.is>
zr 1.0.2
by Jonathan Dahan <hi@jonathan.is>

zr --update updates loaded files listened in _ZR environment variable
zr [[http://example.com]plugin/name[.git/path/to/file.zsh]] fetch or update plugins and output sourceable zsh
zr [[http://example.com]plugin/name[.git/path/to/file.zsh]] fetch plugins and output sourceable zsh
zr --update updates plugins from already sourced zsh
zr help show help

#### install
Expand Down
11 changes: 5 additions & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ fn main() {
}

fn help() {
println!("
{name} {version}
by Jonathan Dahan <[email protected]>
println!("{name} {version}
by Jonathan Dahan <[email protected]>
{name} [[http://example.com]plugin/name[.git/path/to/file.zsh]] fetch plugins and output sourceable zsh
{name} --update update plugins from already sourced zsh
{name} help show help", version=VERSION, name=NAME);
{name} [[http://example.com]plugin/name[.git/path/to/file.zsh]] fetch plugins and output sourceable zsh
{name} --update update plugins from already sourced zsh
{name} help show help", version=VERSION, name=NAME);
}

/// Take a list of identifiers (from cli args) and output sourceable zsh
Expand Down

0 comments on commit d820dcf

Please sign in to comment.