diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-26 22:28:52 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-26 22:28:52 +0200 |
| commit | c514262eb8bfd4042719efd28335f0e1ad9a4f48 (patch) | |
| tree | f6cea304240a88e41a99ab33280594858b28af8d /internal/askcli/dispatch.go | |
| parent | 5603667541240cc7eaf3b8cd2352bf12c1bdd8f2 (diff) | |
ask: speed up fish UUID completion
Diffstat (limited to 'internal/askcli/dispatch.go')
| -rw-r--r-- | internal/askcli/dispatch.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go index 19e9b58..bc4715c 100644 --- a/internal/askcli/dispatch.go +++ b/internal/askcli/dispatch.go @@ -76,6 +76,8 @@ func (d Dispatcher) Dispatch(ctx context.Context, args []string, stdin io.Reader return d.handleDelete(ctx, args, stdin, stdout, stderr) case "help": return d.help(stdout) + case "complete-uuids": + return d.handleCompleteUUIDs(ctx, stdout, stderr) default: return d.unknownCommand(stderr, subcommand) } |
