apps/jotts/tui/editor.go 235 B raw
1
package tui
2
3
import (
4
	tea "charm.land/bubbletea/v2"
5
	sharedtui "github.com/stevedylandev/andromeda/pkg/tui"
6
)
7
8
func openExternalEditor(shortID, content string) tea.Cmd {
9
	return sharedtui.SpawnEditor(shortID, "jotts-*.md", content)
10
}