diff options
author | Robin Jarry <robin@jarry.cc> | 2024-06-27 00:28:18 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-06-28 23:28:53 +0200 |
commit | c15c265f7bcd6b0568b9d259673b7f302602f250 (patch) | |
tree | c9a625ca3ddc10eda1650a0aafdfaebd055afcb3 /doc | |
parent | 8e1f1dc199e1ea05cfd1319aa9338609e3ab3af6 (diff) | |
download | aerc-c15c265f7bcd6b0568b9d259673b7f302602f250.tar.gz |
main: add aliases for flags and options
Add --help and --version as aliases of -h and -v, respectively.
Also add short flags for other options.
Reported-by: Peter Sanchez <pjs@petersanchez.com>
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc.1.scd | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/doc/aerc.1.scd b/doc/aerc.1.scd index 60b8dd27..3a33fbd9 100644 --- a/doc/aerc.1.scd +++ b/doc/aerc.1.scd @@ -6,37 +6,42 @@ aerc - a pretty good email client. # SYNOPSIS -*aerc* [*-h*] [*-v*] [*-a* _<account>_] [*mailto:*_..._ | *:*_<command...>_ | *mbox:*_<file>_] +*aerc* [*-h*] [*-v*] [*-a* _<name>_] [*-C* _<file>_] [*-A* _<file>_] [*-B* +_<file>_] [*-I*] [*mailto:*_<...>_ | *mbox:*_<file>_ | :_<command...>_] For a guided tutorial, use *:help tutorial* from aerc, or *man aerc-tutorial* from your terminal. # OPTIONS -*-h* +*-h*, *--help* Show aerc usage help and exit. -*-v* +*-v*, *--version* Print the installed version of aerc and exit. -*-a* _<account>_ +*-a* _<name>_++ +*--account* _<name>_ Load only the named account, as opposed to all configured accounts. It can also be a comma separated list of names. This option may be specified multiple times. The account order will be preserved. +*-C* _</path/to/aerc.conf>_++ *--aerc-conf* _</path/to/aerc.conf>_ Instead of using _$XDG_CONFIG_HOME/aerc/aerc.conf_ use the file at the specified path for configuring aerc. +*-A* _</path/to/accounts.conf>_++ *--accounts-conf* _</path/to/accounts.conf>_ Instead of using _$XDG_CONFIG_HOME/aerc/accounts.conf_ use the file at the specified path for configuring accounts. +*-B* _</path/to/binds.conf>_++ *--binds-conf* _</path/to/binds.conf>_ Instead of using _$XDG_CONFIG_HOME/aerc/binds.conf_ use the file at the specified path for configuring binds. -*--no-ipc* +*-I*, *--no-ipc* Run commands (*mailto:*_..._, *:*_<command...>_, *mbox:*_<file>_) directly in this instance rather than over IPC in an existing aerc instance. Also disable creation of an IPC server for subsequent aerc instances to |