summaryrefslogtreecommitdiff
path: root/widgets/status.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2022-02-22 20:10:54 +0100
committerRobin Jarry <robin@jarry.cc>2022-02-23 11:27:19 +0100
commit8935c452939cd707d7bd060292da502157625fa4 (patch)
tree508896a9cc225a0df55bd2a9b0631f6cf5d4eca2 /widgets/status.go
parentdf8c129235d9f26892caf89f056adc0e16b3d6b6 (diff)
downloadaerc-8935c452939cd707d7bd060292da502157625fa4.zip
search/filter: display in extra status
Add an extra attribute to the status line. When non-empty, display it after the current status. Set that extra status after a successful :search or :filter. Remove it after :clear. Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets/status.go')
-rw-r--r--widgets/status.go16
1 files changed, 15 insertions, 1 deletions
diff --git a/widgets/status.go b/widgets/status.go
index c70d215..960f244 100644
--- a/widgets/status.go
+++ b/widgets/status.go
@@ -14,6 +14,7 @@ type StatusLine struct {
ui.Invalidatable
stack []*StatusMessage
fallback StatusMessage
+ extra string
aerc *Aerc
uiConfig config.UIConfig
}
@@ -29,6 +30,7 @@ func NewStatusLine(uiConfig config.UIConfig) *StatusLine {
style: uiConfig.GetStyle(config.STYLE_STATUSLINE_DEFAULT),
message: "Idle",
},
+ extra: "",
uiConfig: uiConfig,
}
}
@@ -49,7 +51,11 @@ func (status *StatusLine) Draw(ctx *ui.Context) {
pendingKeys += string(pendingKey.Rune)
}
}
- message := runewidth.FillRight(line.message, ctx.Width()-len(pendingKeys)-5)
+ text := line.message
+ if status.extra != "" {
+ text += " " + status.extra
+ }
+ message := runewidth.FillRight(text, ctx.Width()-len(pendingKeys)-5)
ctx.Printf(0, 0, line.style, "%s%s", message, pendingKeys)
}
@@ -103,6 +109,14 @@ func (status *StatusLine) PushSuccess(text string) *StatusMessage {
return msg
}
+func (status *StatusLine) SetExtra(text string) {
+ status.extra = text
+}
+
+func (status *StatusLine) ClearExtra() {
+ status.extra = ""
+}
+
func (status *StatusLine) Expire() {
status.stack = nil
}