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 b42d397 commit 54c4a0dCopy full SHA for 54c4a0d
package.json
@@ -2,7 +2,7 @@
2
"name": "andreas-talon",
3
"displayName": "Andreas Talon",
4
"description": "VSCode extension used by Talon Voice",
5
- "version": "3.75.0",
+ "version": "3.75.1",
6
"publisher": "AndreasArvidsson",
7
"license": "MIT",
8
"main": "./out/extension.js",
src/language/searchInWorkspace.ts
@@ -98,7 +98,10 @@ async function searchInDirectory(
98
path.join(absolutePath, filename),
99
path.join(relativePath, filename),
100
filename,
101
- ),
+ ).catch((error) => {
102
+ console.error(error);
103
+ return [];
104
+ }),
105
),
106
);
107
return definitions.flat();
0 commit comments