summary refs log tree commit diff stats
path: root/commands/account/pipe.go
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/account/pipe.go
parentef57300fafb45f54d10f8ec75d19301dec351ba0 (diff)
downloadaerc-22cc40f4d482e76a53a72f7a3c6ddf8038b3c98e.tar.gz
pipe.go: let tab widget handle ellipsis
Diffstat (limited to 'commands/account/pipe.go')
-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 title='author Kacper Kołodziej <kacper@kolodziej.it> 2019-07-20 11:29:31 +0200 committer Drew DeVault <sir@cmpwn.com> 2019-07-23 10:41:15 -0400 Makefile: Use GO variable to specify compiler path' href='/akspecs/aerc/commit/Makefile?h=0.3.0&id=6c0f228451c171f4901fa214dd8252d2b22bceaa'>6c0f228 ^
90db2e5 ^


78fc83e ^
fc719e4 ^
d30a6e3 ^
0bfb90b ^
58bc15b ^
fc719e4 ^

94b9d55 ^
fc719e4 ^

7a26b48 ^
4875813 ^
0016775 ^
58bc15b ^

fc719e4 ^
0bfb90b ^








f42724c ^

d30a6e3 ^
fc719e4 ^
0bfb90b ^


fc719e4 ^
eabdcff ^
fc719e4 ^
3874269 ^
3e7ac52 ^
7f540df ^
3874269 ^

94b9d55 ^
3874269 ^

7a26b48 ^
4875813 ^
0016775 ^
3874269 ^
c21ec37 ^
7f540df ^
d30a6e3 ^
7f540df ^
177651b ^


fc719e4 ^
d3b5a76 ^









7a26b48 ^
4875813 ^
0016775 ^
d3b5a76 ^








fc719e4 ^

d3b5a76 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103