diff options
author | Kevin Kuehler <keur@ocf.berkeley.edu> | 2019-06-01 22:15:04 -0700 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-02 10:16:29 -0400 |
commit | 753adb90692e4821f8caea1d5d86cd69e312efa7 (patch) | |
tree | 79f7563e0ef68264b12244160b3274b678875624 /commands/msg/msg.go | |
parent | 2be985fecb0d76e8fa7cdc46c8de92b6caab9552 (diff) | |
download | aerc-753adb90692e4821f8caea1d5d86cd69e312efa7.tar.gz |
widget: Add ProvidesMessage interface
Consists of 3 functions * Store: Access to MessageStore type * SelectedAccount: Access to Account widget that the target widget belongs to * SelectedMessage: Current message (selected in msglist or the one we are viewing) Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
Diffstat (limited to 'commands/msg/msg.go')
-rw-r--r-- | commands/msg/msg.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/msg/msg.go b/commands/msg/msg.go new file mode 100644 index 0000000..73755aa --- /dev/null +++ b/commands/msg/msg.go @@ -0,0 +1,16 @@ +package msg + +import ( + "git.sr.ht/~sircmpwn/aerc/commands" +) + +var ( + MessageCommands *commands.Commands +) + +func register(name string, cmd commands.AercCommand) { + if MessageCommands == nil { + MessageCommands = commands.NewCommands() + } + MessageCommands.Register(name, cmd) +} |