From e75d9e371269a4e46bffa6b3dd1fc7d040e82750 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Tue, 30 Sep 2025 13:34:10 +0200 Subject: add mdedit --- main.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index 0dcc267..0b406a6 100644 --- a/main.go +++ b/main.go @@ -8,6 +8,7 @@ import ( "os" "path/filepath" + "github.com/majewsky/gofu/internal/mdedit" "github.com/majewsky/gofu/internal/prompt" "github.com/majewsky/gofu/internal/rtree" ) @@ -27,6 +28,8 @@ func execApplet(applet string, args []string, allowGofu bool) int { } switch applet { + case "mdedit": + return mdedit.Exec(args) case "prettyprompt": return prompt.Exec(args) case "rtree": -- cgit v1.3.1