summaryrefslogtreecommitdiff
path: root/client/buffer/buffer.go
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-06-02 13:58:49 -0500
committercitrons <citrons@mondecitronne.com>2025-06-02 13:58:49 -0500
commit407350e321221d6cd438deab5df52464c02198ab (patch)
tree77ddc2662100e451ecc2a3b40317492697640d7f /client/buffer/buffer.go
parentcd33ad54372bd53842fd6e04dbb2859f9ab59f51 (diff)
show oddness in command window preview
Diffstat (limited to 'client/buffer/buffer.go')
-rw-r--r--client/buffer/buffer.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/buffer/buffer.go b/client/buffer/buffer.go
index 3fea156..99d4ef2 100644
--- a/client/buffer/buffer.go
+++ b/client/buffer/buffer.go
@@ -31,6 +31,10 @@ func (l List) Next() *List {
return l.next
}
+func (l List) IsOdd() bool {
+ return l.odd
+}
+
func (l List) Msg() Message {
return l.msg
}