From 21b94d2de5bdf2d8c4e8107e4c197a2abc1e7275 Mon Sep 17 00:00:00 2001 From: Ryan Boehning Date: Sat, 17 Feb 2018 14:01:06 -0800 Subject: Make fzf pass go vet Add String() methods to types, so they can be printed with %s. Change some %s format specifiers to %v, when the default string representation is good enough. In Go 1.10, `go test` triggers a parallel `go vet`. So this also makes fzf pass `go test`. Close #1236 Close #1219 --- src/pattern.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/pattern.go') diff --git a/src/pattern.go b/src/pattern.go index 636ae1ee..2627dea6 100644 --- a/src/pattern.go +++ b/src/pattern.go @@ -1,6 +1,7 @@ package fzf import ( + "fmt" "regexp" "strings" @@ -34,6 +35,11 @@ type term struct { caseSensitive bool } +// String returns the string representation of a term. +func (t term) String() string { + return fmt.Sprintf("term{typ: %d, inv: %v, text: []rune(%q), caseSensitive: %v}", t.typ, t.inv, string(t.text), t.caseSensitive) +} + type termSet []term // Pattern represents search pattern -- cgit v1.2.3