mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
association => associations
This commit is contained in:
@@ -34,7 +34,7 @@ export class FileAssociationContribution implements IJSONWorkerContribution {
|
||||
}
|
||||
|
||||
public collectPropertySuggestions(resource: string, location: JSONLocation, currentWord: string, addValue: boolean, isLast: boolean, result: ISuggestionsCollector): Thenable<any> {
|
||||
if (this.isSettingsFile(resource) && location.matches(['files.association'])) {
|
||||
if (this.isSettingsFile(resource) && location.matches(['files.associations'])) {
|
||||
globProperties.forEach((e) => result.add(e));
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export class FileAssociationContribution implements IJSONWorkerContribution {
|
||||
}
|
||||
|
||||
public collectValueSuggestions(resource: string, location: JSONLocation, currentKey: string, result: ISuggestionsCollector): Thenable<any> {
|
||||
if (this.isSettingsFile(resource) && location.matches(['files.association'])) {
|
||||
if (this.isSettingsFile(resource) && location.matches(['files.associations'])) {
|
||||
globValues.forEach((e) => result.add(e));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user