Add rust-analyzer.gotoLocation command

This commit is contained in:
vsrs 2020-06-10 23:01:19 +03:00
parent d4e75312ba
commit 7e986d1504
6 changed files with 25 additions and 8 deletions

View file

@ -135,6 +135,9 @@ export class Config {
return {
enable: this.get<boolean>("hoverActions.enable"),
implementations: this.get<boolean>("hoverActions.implementations"),
run: this.get<boolean>("hoverActions.run"),
debug: this.get<boolean>("hoverActions.debug"),
gotoTypeDef: this.get<boolean>("hoverActions.gotoTypeDef"),
};
}
}