Skip to content

Commit

Permalink
fix issue in #722
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Feb 10, 2017
1 parent 6a4a61e commit 3da8042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/workspaceSymbols/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function parseTagsLine(line: string, searchPattern: string): Tag {
}
let file = match.file;
if (!path.isAbsolute(file)) {
file = path.resolve(vscode.workspace.rootPath, file);
file = path.resolve(vscode.workspace.rootPath, '.vscode', file);
}

const symbolKind = CTagKinMapping.has(match.type) ? CTagKinMapping.get(match.type) : vscode.SymbolKind.Null;
Expand Down

0 comments on commit 3da8042

Please sign in to comment.