@@ -123,12 +123,12 @@ export class Config {
123
123
124
124
get hoverActions ( ) {
125
125
return {
126
- enable : this . get < boolean > ( "hoverActions .enable" ) ,
127
- implementations : this . get < boolean > ( "hoverActions .implementations.enable" ) ,
128
- references : this . get < boolean > ( "hoverActions .references.enable" ) ,
129
- run : this . get < boolean > ( "hoverActions .run.enable" ) ,
130
- debug : this . get < boolean > ( "hoverActions .debug.enable" ) ,
131
- gotoTypeDef : this . get < boolean > ( "hoverActions .gotoTypeDef.enable" ) ,
126
+ enable : this . get < boolean > ( "hover.actions .enable" ) ,
127
+ implementations : this . get < boolean > ( "hover.actions .implementations.enable" ) ,
128
+ references : this . get < boolean > ( "hover.actions .references.enable" ) ,
129
+ run : this . get < boolean > ( "hover.actions .run.enable" ) ,
130
+ debug : this . get < boolean > ( "hover.actions .debug.enable" ) ,
131
+ gotoTypeDef : this . get < boolean > ( "hover.actions .gotoTypeDef.enable" ) ,
132
132
} ;
133
133
}
134
134
@@ -164,12 +164,12 @@ export async function updateConfig(config: vscode.WorkspaceConfiguration) {
164
164
[ "hover.documentation" , "hover.documentation.enable" , ] ,
165
165
[ "hover.linksInHover" , "hover.links.enable" , ] ,
166
166
[ "hoverActions.linksInHover" , "hover.links.enable" , ] ,
167
- [ "hoverActions.debug" , "hoverActions .debug.enable" , ] ,
168
- [ "hoverActions.enable" , "hoverActions .enable.enable" , ] ,
169
- [ "hoverActions.gotoTypeDef" , "hoverActions .gotoTypeDef.enable" , ] ,
170
- [ "hoverActions.implementations" , "hoverActions .implementations.enable" , ] ,
171
- [ "hoverActions.references" , "hoverActions .references.enable" , ] ,
172
- [ "hoverActions.run" , "hoverActions .run.enable" , ] ,
167
+ [ "hoverActions.debug" , "hover.actions .debug.enable" , ] ,
168
+ [ "hoverActions.enable" , "hover.actions .enable.enable" , ] ,
169
+ [ "hoverActions.gotoTypeDef" , "hover.actions .gotoTypeDef.enable" , ] ,
170
+ [ "hoverActions.implementations" , "hover.actions .implementations.enable" , ] ,
171
+ [ "hoverActions.references" , "hover.actions .references.enable" , ] ,
172
+ [ "hoverActions.run" , "hover.actions .run.enable" , ] ,
173
173
[ "inlayHints.chainingHints" , "inlayHints.chainingHints.enable" , ] ,
174
174
[ "inlayHints.closureReturnTypeHints" , "inlayHints.closureReturnTypeHints.enable" , ] ,
175
175
[ "inlayHints.hideNamedConstructorHints" , "inlayHints.typeHints.hideNamedConstructorHints" , ] ,
0 commit comments