Add SetStyle Function

This commit is contained in:
2026-01-23 09:36:43 -06:00
parent d442b7d6a8
commit c1296b1dc1
31 changed files with 425 additions and 392 deletions

View File

@@ -257,7 +257,8 @@ func (w *Searcher) buildBuffer() {
w.buffer = b
}
func (w *Searcher) Active() bool { return w.active }
func (w *Searcher) SetStyle(s tcell.Style) { w.style = s }
func (w *Searcher) Active() bool { return w.active }
func (w *Searcher) SetActive(a bool) {
w.active = a
w.search.SetActive(a)