Add -E to open editor on completion

This commit is contained in:
2025-08-23 18:38:12 -04:00
parent dcfdfa27ef
commit c6cc326ec7
4 changed files with 25 additions and 4 deletions

View File

@@ -12,6 +12,7 @@
typedef struct {
bool git;
bool clang;
bool editor;
} flag_t;
typedef struct {
@@ -34,6 +35,7 @@ typedef struct {
char *project;
char *name;
char *editor;
} manifest_t;
int create_project(manifest_t manifest);