diff options
Diffstat (limited to 'commands/move-tab.go')
-rw-r--r-- | commands/move-tab.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/move-tab.go b/commands/move-tab.go index 7ebe269c..c8e1b99a 100644 --- a/commands/move-tab.go +++ b/commands/move-tab.go @@ -13,7 +13,11 @@ type MoveTab struct { } func init() { - register(MoveTab{}) + Register(MoveTab{}) +} + +func (MoveTab) Context() CommandContext { + return GLOBAL } func (m *MoveTab) ParseIndex(arg string) error { |