summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-20 14:01:13 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-20 14:01:13 -0400
commit22cc40f4d482e76a53a72f7a3c6ddf8038b3c98e (patch)
tree6553ec5a5b39719e22ba33b2d44b54400e5b121b /commands
parentef57300fafb45f54d10f8ec75d19301dec351ba0 (diff)
downloadaerc-22cc40f4d482e76a53a72f7a3c6ddf8038b3c98e.tar.gz
pipe.go: let tab widget handle ellipsis
Diffstat (limited to 'commands')
-rw-r--r--commands/account/pipe.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/account/pipe.go b/commands/account/pipe.go
index 9461d17..9675fe4 100644
--- a/commands/account/pipe.go
+++ b/commands/account/pipe.go
@@ -9,7 +9,6 @@ import (
 	"git.sr.ht/~sircmpwn/aerc/widgets"
 
 	"github.com/gdamore/tcell"
-	"github.com/mattn/go-runewidth"
 )
 
 func init() {
@@ -38,7 +37,7 @@ func Pipe(aerc *widgets.Aerc, args []string) error {
 			return
 		}
 		name := args[1] + " <" + msg.Envelope.Subject
-		aerc.NewTab(term, runewidth.Truncate(name, 32, "…"))
+		aerc.NewTab(term, name)
 		term.OnClose = func(err error) {
 			if err != nil {
 				aerc.PushStatus(" "+err.Error(), 10*time.Second).
a id='n138' href='#n138'>138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181