Skip to content

Commit 4cec487

Browse files
committed
fix(plugin-completions): do not display completion-server command in help text
1 parent 8c2cd68 commit 4cec487

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/plugin-completions/src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ export const completionsPlugin = (
9393
});
9494

9595
cli
96-
.command("completion-server", "Handle completions")
96+
.command("completion-server", "Handle completions", {
97+
help: {
98+
showInHelp: false,
99+
},
100+
})
97101
.on("completion-server", async () => {
98102
const env = tabtab.parseEnv(process.env);
99103
if (!env.complete) {

0 commit comments

Comments
 (0)