aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-06-10 21:01:19 +0100
committervsrs <[email protected]>2020-06-18 08:15:43 +0100
commit7e986d1504e6fd6dc1fc9b64f5fb9eac2bef952a (patch)
tree2b2cd6da18a1b4a95b1953a3fcbb2519fae44a22 /editors/code/src/config.ts
parentd4e75312ba64c2541e0d97b9ad8d6e2a735882a4 (diff)
Add `rust-analyzer.gotoLocation` command
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 22ebdf636..9591d4fe3 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -135,6 +135,9 @@ export class Config {
135 return { 135 return {
136 enable: this.get<boolean>("hoverActions.enable"), 136 enable: this.get<boolean>("hoverActions.enable"),
137 implementations: this.get<boolean>("hoverActions.implementations"), 137 implementations: this.get<boolean>("hoverActions.implementations"),
138 run: this.get<boolean>("hoverActions.run"),
139 debug: this.get<boolean>("hoverActions.debug"),
140 gotoTypeDef: this.get<boolean>("hoverActions.gotoTypeDef"),
138 }; 141 };
139 } 142 }
140} 143}