diff options
author | Robin Jarry <robin@jarry.cc> | 2023-10-09 13:52:20 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-10-10 11:37:56 +0200 |
commit | 598e4a5803578ab3e291f232d6aad31b4efd8ea4 (patch) | |
tree | c55e16d60e2c3eea2d6de27d1bac18db5670ec77 /commands/completion_helpers.go | |
parent | 61bca76423ee87bd59084a146eca71c6bae085e1 (diff) | |
download | aerc-598e4a5803578ab3e291f232d6aad31b4efd8ea4.tar.gz |
widgets: rename package to app
This is the central point of all aerc. Having it named widgets is
confusing. Rename it to app. It will make a cleaner transition when
making the app.Aerc object available globally in the next commit.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'commands/completion_helpers.go')
-rw-r--r-- | commands/completion_helpers.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/completion_helpers.go b/commands/completion_helpers.go index 96a423ee..c7cb780b 100644 --- a/commands/completion_helpers.go +++ b/commands/completion_helpers.go @@ -5,14 +5,14 @@ import ( "net/mail" "strings" + "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/completer" "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/log" - "git.sr.ht/~rjarry/aerc/widgets" ) // GetAddress uses the address-book-cmd for address completion -func GetAddress(aerc *widgets.Aerc, search string) []string { +func GetAddress(aerc *app.Aerc, search string) []string { var options []string cmd := aerc.SelectedAccount().AccountConfig().AddressBookCmd |