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 535dd62 commit 22e244eCopy full SHA for 22e244e
src/electron-ipc/package.json
@@ -2,7 +2,7 @@
2
"name": "@commas/electron-ipc",
3
"private": true,
4
"version": "0.1.0",
5
- "main": "index.js",
+ "main": "index.ts",
6
"author": "commas",
7
"license": "ISC"
8
}
src/main/utils/completion.ts
@@ -344,7 +344,10 @@ const getCommandRawCompletions = memoizeAsync(async () => {
344
getAllCommands(),
345
getCommandAliases(),
346
])
347
- return uniq(commands).sort().map<CommandCompletion>(item => ({
+ return uniq([
348
+ ...commands,
349
+ ...Object.keys(aliases),
350
+ ]).sort().map<CommandCompletion>(item => ({
351
type: 'command',
352
query: '',
353
value: item,
0 commit comments