Skip to content

Commit

Permalink
Include userdata in configuration resolver file resolution
Browse files Browse the repository at this point in the history
Fixes #78247
  • Loading branch information
alexr00 committed Aug 23, 2019
1 parent b83d45d commit 40e7935
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export abstract class BaseConfigurationResolverService extends AbstractVariableR
if (activeEditor instanceof DiffEditorInput) {
activeEditor = activeEditor.modifiedInput;
}
const fileResource = toResource(activeEditor, { filterByScheme: Schemas.file });
const fileResource = toResource(activeEditor, { filterByScheme: [Schemas.file, Schemas.userData] });
if (!fileResource) {
return undefined;
}
Expand Down

0 comments on commit 40e7935

Please sign in to comment.