We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018b624 commit 45bc2f4Copy full SHA for 45bc2f4
CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
7
+## Unreleased
8
+
9
+### Fixed
10
11
+- Fixed ctags indexing error when ctags path is set to none [#417](https://github.com/mshr-h/vscode-verilog-hdl-support/issues/417)
12
13
## [1.13.3] - 2024-03-22
14
15
### Added
src/ctags.ts
@@ -176,7 +176,8 @@ export class Ctags {
176
});
177
178
}
179
- return undefined;
+ // Return empty promise if ctags path is not set to avoid errors when indexing
180
+ return Promise.resolve('');
181
182
183
parseTagLine(line: string): Symbol {
0 commit comments