diff options
author | Robin Jarry <robin@jarry.cc> | 2023-12-04 23:39:49 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-01-20 21:56:25 +0100 |
commit | 159fb38daf5336758abc425447cf2c2ed51de59a (patch) | |
tree | e7be3bea878b12e441332f89d7bc3c63db477c05 /commands/msg/mark.go | |
parent | d2817371867e94b621de4054b235d53312db8073 (diff) | |
download | aerc-159fb38daf5336758abc425447cf2c2ed51de59a.tar.gz |
commands: refactor registration
Register all commands with the same function and store them in the same
map.
Use bit flags to determine in which contexts each command should be
available.
Remove duplicate commands now that the same command can be exposed in
multiple contexts.
Refactor API to allow executing commands from other commands without
import cycles.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Bence Ferdinandy <bence@ferdinandy.com>
Tested-by: Johannes Thyssen Tishman <johannes@thyssentishman.com>
Diffstat (limited to 'commands/msg/mark.go')
-rw-r--r-- | commands/msg/mark.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/commands/msg/mark.go b/commands/msg/mark.go index 9547548f..f86c3413 100644 --- a/commands/msg/mark.go +++ b/commands/msg/mark.go @@ -2,6 +2,8 @@ package msg import ( "fmt" + + "git.sr.ht/~rjarry/aerc/commands" ) type Mark struct { @@ -13,7 +15,11 @@ type Mark struct { } func init() { - register(Mark{}) + commands.Register(Mark{}) +} + +func (Mark) Context() commands.CommandContext { + return commands.MESSAGE } func (Mark) Aliases() []string { |