diff --git a/utils/tui/modelutils/option.go b/utils/tui/modelutils/option.go index 95df963..8f2e2e7 100644 --- a/utils/tui/modelutils/option.go +++ b/utils/tui/modelutils/option.go @@ -87,7 +87,7 @@ func (m ModeSelector) View() string { s += cursor + " " + choice + "\n" } } - return s + Paint("silver").Render("\n 'q' to quit 'enter' to modify selected files\n '↑' to go up\n '↓' to go down") + return s + Paint("silver").Render("\n 'q' to quit 'enter' to modify selected files 'esc' to go back\n '↑' to go up\n '↓' to go down") } } diff --git a/utils/tui/modelutils/text.go b/utils/tui/modelutils/text.go index 0db4e08..afb9009 100644 --- a/utils/tui/modelutils/text.go +++ b/utils/tui/modelutils/text.go @@ -83,7 +83,7 @@ func (m LabelInput) View() string { s += Paint("red").Render("\nError: "+m.Error.Error()) + "\n" } - s += Paint("silver").Render("\n 'ctrl +c' to quit 'enter' to select the lines/labels indicated\n '↑' to go up\n '↓' to go down") + s += Paint("silver").Render("\n 'ctrl +c' to quit 'enter' to select the lines/labels indicated 'esc' to go back\n '↑' to go up\n '↓' to go down") return s }