We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47f0397 commit 9928dfbCopy full SHA for 9928dfb
2 files changed
bin/cli.ts
@@ -73,7 +73,7 @@ async function main() {
73
process.exit(0);
74
}
75
76
- console.error('Usages: tab <packageManager> <shell>');
+ console.error('Usage: tab <packageManager> <shell>');
77
console.error(` tab <packageManager> complete -- <args>`);
78
process.exit(1);
79
src/powershell.ts
@@ -75,7 +75,7 @@ export function generate(
# Split the command at the first space to separate the program and arguments.
$Program, $Arguments = $Command.Split(" ", 2)
- $RequestComp = "& ${exec} complete '--' $Arguments"
+ $RequestComp = "& ${exec} complete -- $Arguments"
__${name}_debug "RequestComp: $RequestComp"
80
81
# we cannot use $WordToComplete because it
0 commit comments