We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1ebbe commit 05ed129Copy full SHA for 05ed129
1 file changed
internal/tui/editor_panel.go
@@ -89,6 +89,14 @@ func (p *editorPanel) update(msg tea.Msg) tea.Cmd {
89
// Remove the path from textarea — it's now an object.
90
p.textarea.SetValue(prevValue)
91
}
92
+
93
+ // Paste into empty editor: scroll cursor to top so text is visible.
94
+ if prevValue == "" && len(newValue) > 1 {
95
+ for range p.estimateVisualLines() + 10 {
96
+ p.textarea.CursorUp()
97
+ }
98
+ p.textarea.CursorStart()
99
100
101
102
p.reclassify()
0 commit comments