diff options
Diffstat (limited to 'ui/ui.go')
-rw-r--r-- | ui/ui.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -318,6 +318,10 @@ func (ui *UI) InputClear() bool { return ui.e.Clear() } +func (ui *UI) InputSet(text string) { + ui.e.Set(text) +} + func (ui *UI) InputBackSearch() { ui.e.BackSearch() } |