@@ -123,12 +123,12 @@ export class Config {
123123
124124 get hoverActions ( ) {
125125 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" ) ,
132132 } ;
133133 }
134134
@@ -164,12 +164,12 @@ export async function updateConfig(config: vscode.WorkspaceConfiguration) {
164164 [ "hover.documentation" , "hover.documentation.enable" , ] ,
165165 [ "hover.linksInHover" , "hover.links.enable" , ] ,
166166 [ "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" , ] ,
173173 [ "inlayHints.chainingHints" , "inlayHints.chainingHints.enable" , ] ,
174174 [ "inlayHints.closureReturnTypeHints" , "inlayHints.closureReturnTypeHints.enable" , ] ,
175175 [ "inlayHints.hideNamedConstructorHints" , "inlayHints.typeHints.hideNamedConstructorHints" , ] ,
0 commit comments