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/msg/delete.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/msg/delete.go')
-rw-r--r-- | commands/msg/delete.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/delete.go b/commands/msg/delete.go index 19f44b43..0abde31c 100644 --- a/commands/msg/delete.go +++ b/commands/msg/delete.go @@ -20,7 +20,7 @@ func init() { } func (Delete) Context() commands.CommandContext { - return commands.MESSAGE + return commands.MESSAGE_LIST | commands.MESSAGE_VIEWER } func (Delete) Aliases() []string { |