diff options
author | Robin Jarry <robin@jarry.cc> | 2023-08-21 10:50:40 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-08-26 21:42:42 +0200 |
commit | bc8fdbbe8479f9f604f429931e7c90e396ea6f00 (patch) | |
tree | a918804be03cfd6963afc02e85bfd460f34c0271 /widgets/account-wizard.go | |
parent | 459724889a62d65ff09ee15d6b6bd98b650e1cb7 (diff) | |
download | aerc-bc8fdbbe8479f9f604f429931e7c90e396ea6f00.tar.gz |
wizard: improve welcome screen
The wizard now supports all protocols. Adapt welcome text accordingly.
Display key bindings in a more consistent manner.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Tristan Partin <tristan@partin.io>
Tested-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'widgets/account-wizard.go')
-rw-r--r-- | widgets/account-wizard.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/widgets/account-wizard.go b/widgets/account-wizard.go index 266b86f5..b0615ef8 100644 --- a/widgets/account-wizard.go +++ b/widgets/account-wizard.go @@ -278,9 +278,11 @@ func NewAccountWizard(aerc *Aerc) *AccountWizard { ` Welcome to aerc! Let's configure your account. -This wizard supports basic IMAP & SMTP configuration. -For other configurations, use <Ctrl+q> to exit and read the aerc-accounts(5) man page. -Press <Tab> and <Shift+Tab> to cycle between each field in this form, or <Ctrl+j> and <Ctrl+k>. +Key bindings: + + <Tab>, <Down> or <Ctrl+j> Next field + <Shift+Tab>, <Up> or <Ctrl+k> Previous field + <Ctrl+q> Exit aerc `, &wizard.basics, ) |