fix: remove extra newline after exiting editor

also deleted an extra binary that somehow got in
This commit is contained in:
Adi Yeroslav 2025-07-16 17:30:51 +03:00
parent 5d67e13df5
commit 243b262f65
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -408,7 +408,7 @@ func (m *editorComponent) SetInterruptKeyInDebounce(inDebounce bool) {
}
func (m *editorComponent) SetValue(value string) {
m.textarea.SetValue(value)
m.textarea.SetValue(strings.TrimSuffix(value, "\n"))
}
func (m *editorComponent) SetExitKeyInDebounce(inDebounce bool) {