From f90f4aef7ef83fc1a1eb234fbc77e67f7fc5bd0b Mon Sep 17 00:00:00 2001 From: dvkt Date: Wed, 8 Jan 2020 12:31:48 -0800 Subject: [PATCH] stop fighting with tabs --- README.md | 18 +++++++++--------- src/main.rs | 26 +++++++++++++------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index abc491b..dbfc25f 100644 --- a/README.md +++ b/README.md @@ -27,18 +27,18 @@ the gophersphere. Usage: - phetch [options] launch phetch in interactive mode - phetch [options] [url] open gopher url in interactive mode + phetch [options] launch phetch in interactive mode + phetch [options] [url] open gopher url in interactive mode Options: - -t, --tls try to open all pages w/ tls - -r, --raw print raw gopher response only - -p, --print print rendered gopher response only - -l, --local connect to 127.0.0.1:7070 - - -h, --help show this screen - -v, --version show phetch version + -t, --tls try to open all pages w/ tls + -r, --raw print raw gopher response only + -p, --print print rendered gopher response only + -l, --local connect to 127.0.0.1:7070 + + -h, --help show this screen + -v, --version show phetch version Once you've launched phetch, use `ctrl-h` to view the on-line help. diff --git a/src/main.rs b/src/main.rs index 5b1e9d8..42fd29b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -109,22 +109,22 @@ fn print_usage() { print_version(); println!( " -Usage: +Usage: -\tphetch [options] launch phetch in interactive mode -\tphetch [options] [url] open gopher url in interactive mode + phetch [options] launch phetch in interactive mode + phetch [options] [url] open gopher url in interactive mode -Options: + Options: - -t, --tls try to open all pages w/ tls - -r, --raw print raw gopher response only - -p, --print print rendered gopher response only - -l, --local connect to 127.0.0.1:7070 - - -h, --help show this screen - -v, --version show phetch version - -Once you've launched phetch, use `ctrl-h` to view the on-line help. " + -t, --tls try to open all pages w/ tls + -r, --raw print raw gopher response only + -p, --print print rendered gopher response only + -l, --local connect to 127.0.0.1:7070 + + -h, --help show this screen + -v, --version show phetch version + + Once you've launched phetch, use `ctrl-h` to view the on-line help. " ); }