Skip to content

Commit 710de8d

Browse files
Merge pull request #1329 from Icenium/vladimirov/autocompletion-for-lowercased-props
Allow autocompletion of lowercased properties
2 parents c67ae58 + 2dd78a9 commit 710de8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/commands/prop/prop-command-base.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export class ProjectPropertyCommandBase {
2929
return range;
3030
}
3131
} else {
32-
return _.keys(this.projectSchema);
32+
let properties = _.keys(this.projectSchema);
33+
return properties.concat(properties.map(k => k.toLowerCase()));
3334
}
3435
}
3536

0 commit comments

Comments
 (0)