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 a53afb5 commit 8620981Copy full SHA for 8620981
bin/cli.ts
@@ -40,17 +40,6 @@ async function main() {
40
? args.slice(2)
41
: null;
42
43
- // When PowerShell drops '--', the cursor placeholder is lost; append an empty
44
- // arg so downstream completion logic knows the cursor is at a new token.
45
- if (
46
- isPowerShell &&
47
- dashIndex === -1 &&
48
- completionArgs &&
49
- completionArgs[completionArgs.length - 1] !== ''
50
- ) {
51
- completionArgs.push('');
52
- }
53
-
54
if (process.env.TAB_DEBUG) {
55
console.error('COMPLETION ARGS:', completionArgs);
56
}
0 commit comments