aboutsummaryrefslogtreecommitdiff
path: root/widgets/exline.go
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/exline.go')
-rw-r--r--widgets/exline.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/exline.go b/widgets/exline.go
index 8ec69d6..1482f0e 100644
--- a/widgets/exline.go
+++ b/widgets/exline.go
@@ -92,7 +92,7 @@ type nullHistory struct {
input *ui.TextInput
}
-func (_ *nullHistory) Add(string) {}
+func (*nullHistory) Add(string) {}
func (h *nullHistory) Next() string {
return h.input.String()
@@ -102,4 +102,4 @@ func (h *nullHistory) Prev() string {
return h.input.String()
}
-func (_ *nullHistory) Reset() {}
+func (*nullHistory) Reset() {}