diff options
author | Robin Jarry <robin@jarry.cc> | 2024-02-28 23:55:20 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-03-04 22:30:14 +0100 |
commit | 2453375721832304b512380e6610de2c3d765bd5 (patch) | |
tree | 25960ef9ebb75ecb9c8b53fab4d2eea958c9e57f /commands/account/compose.go | |
parent | 963633eb83dc19089236ac78ba9d823e7e2a6df9 (diff) | |
download | aerc-2453375721832304b512380e6610de2c3d765bd5.tar.gz |
commands: rename confusing constants
There is an overlap between ACCOUNT and MESSAGE. Rename ACCOUNT to
MESSAGE_LIST and use MESSAGE_LIST|MESSAGE_VIEWER instead of MESSAGE.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'commands/account/compose.go')
-rw-r--r-- | commands/account/compose.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index e45f77c3..c9e36379 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -28,7 +28,7 @@ func init() { } func (Compose) Context() commands.CommandContext { - return commands.ACCOUNT + return commands.MESSAGE_LIST } func (c *Compose) ParseHeader(arg string) error { |