Initial commit of highlight related configuration w/ implementation.

This commit is contained in:
Kevin DeLorey 2021-07-21 19:44:16 -06:00
parent 1dd1814100
commit b75e0e7bb1
6 changed files with 78 additions and 10 deletions

View file

@ -172,6 +172,15 @@ export class Config {
};
}
get highlightRelated() {
return {
references: this.get<boolean>("highlightRelated.references"),
exitPoints: this.get<boolean>("highlightRelated.exit_points"),
breakPoints: this.get<boolean>("highlightRelated.exit_points"),
yieldPoints: this.get<boolean>("highlightRelated.yield_points")
};
}
get currentExtensionIsNightly() {
return this.package.releaseTag === NIGHTLY_TAG;
}