summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-17 17:45:44 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-17 17:45:44 -0400
commit9ff815bb130cca38c66df7a6d42664d8c6376441 (patch)
tree1378551b9e74e630362396000a3434f8e7cf4e92 /commands
parent60b17c473a0edbd806c9f0c8e4b3b238cb60227e (diff)
downloadaerc-9ff815bb130cca38c66df7a6d42664d8c6376441.tar.gz
s/:term-close/:close/g
Diffstat (limited to 'commands')
-rw-r--r--commands/term-close.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/term-close.go b/commands/term-close.go
index 30f3392..ae2b55b 100644
--- a/commands/term-close.go
+++ b/commands/term-close.go
@@ -7,12 +7,13 @@ import (
 )
 
 func init() {
-	Register("term-close", TermClose)
+	// TODO: Move this command into a terminal-specific command set
+	Register("close", TermClose)
 }
 
 func TermClose(aerc *widgets.Aerc, args []string) error {
 	if len(args) != 1 {
-		return errors.New("Usage: term-close")
+		return errors.New("Usage: close")
 	}
 	thost, ok := aerc.SelectedTab().(*widgets.TermHost)
 	if !ok {