summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
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":