We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f1ac7 commit 302533fCopy full SHA for 302533f
1 file changed
src/vs/workbench/contrib/codeinset/codeInset.ts
@@ -94,7 +94,7 @@ registerLanguageCommand('_executeCodeInsetProvider', function (accessor, args) {
94
result.push(item.symbol);
95
} else if (itemResolveCount-- > 0) {
96
resolve.push(Promise.resolve(item.provider.resolveCodeInset(model, item.symbol, CancellationToken.None))
97
- .then(symbol => result.push(symbol)));
+ .then(symbol => result.push(symbol || item.symbol)));
98
}
99
100
0 commit comments