diff options
Diffstat (limited to 'commands/ct.go')
-rw-r--r-- | commands/ct.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/ct.go b/commands/ct.go index 9948e691..1f99c6a5 100644 --- a/commands/ct.go +++ b/commands/ct.go @@ -13,7 +13,11 @@ type ChangeTab struct { } func init() { - register(ChangeTab{}) + Register(ChangeTab{}) +} + +func (ChangeTab) Context() CommandContext { + return GLOBAL } func (ChangeTab) Aliases() []string { |