diff options
Diffstat (limited to 'commands/account/next-folder.go')
-rw-r--r-- | commands/account/next-folder.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go index f44abdc1..c16a7717 100644 --- a/commands/account/next-folder.go +++ b/commands/account/next-folder.go @@ -4,6 +4,7 @@ import ( "errors" "git.sr.ht/~rjarry/aerc/app" + "git.sr.ht/~rjarry/aerc/commands" ) type NextPrevFolder struct { @@ -11,7 +12,11 @@ type NextPrevFolder struct { } func init() { - register(NextPrevFolder{}) + commands.Register(NextPrevFolder{}) +} + +func (NextPrevFolder) Context() commands.CommandContext { + return commands.ACCOUNT } func (NextPrevFolder) Aliases() []string { |