diff options
author | Ethan Bodzioney | 2021-06-07 00:14:06 +0000 |
---|---|---|
committer | GitHub | 2021-06-07 00:14:06 +0000 |
commit | 843c2cdebd50cfe066c88571eb754c465cda2f60 (patch) | |
tree | 4ac6600916644535cbb86e46bdc92d833b35a86b /helix-term/src | |
parent | 8a29086c1a1948fcfd48228f9271dd0ee90a79db (diff) |
Install instructions and version number corrections (#148)
* Add MacOS install instructions
* Change version name argument
When using the -V command to get the version you are given 'helix-term x.x.x', I changed this to just helix as it makes more sense.
* Fixed version number
* Fixed version number
* Fixed version number
* Fixed version number
* Fixed version number
* Fixed version number
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 0b55921a..75b1dfdc 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -141,7 +141,7 @@ FLAGS: } if args.display_version { - println!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")); + println!("helix {}", env!("CARGO_PKG_VERSION")); std::process::exit(0); } |