diff options
Diffstat (limited to 'commands/move-tab.go')
-rw-r--r-- | commands/move-tab.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/move-tab.go b/commands/move-tab.go index c8e1b99a..a1ebfc0d 100644 --- a/commands/move-tab.go +++ b/commands/move-tab.go @@ -16,6 +16,10 @@ func init() { Register(MoveTab{}) } +func (MoveTab) Description() string { + return "Move the selected tab to the given index." +} + func (MoveTab) Context() CommandContext { return GLOBAL } |