File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,9 @@ export namespace MicroProfileLS {
34
34
export const PROPERTY_DEFINITION_REQUEST = 'microprofile/propertyDefinition' ;
35
35
export const JSON_SCHEMA_FOR_PROJECT_INFO_REQUEST = 'microprofile/jsonSchemaForProjectInfo' ;
36
36
export const JAVA_CODELENS_REQUEST = 'microprofile/java/codeLens' ;
37
- export const JAVA_HOVER_REQUEST = 'microprofile/java/hover ' ;
37
+ export const JAVA_CODEACTION_REQUEST = 'microprofile/java/codeAction ' ;
38
38
export const JAVA_DIAGNOSTICS_REQUEST = 'microprofile/java/diagnostics' ;
39
+ export const JAVA_HOVER_REQUEST = 'microprofile/java/hover' ;
39
40
export const PROPERTIES_CHANGED_NOTIFICATION = 'microprofile/propertiesChanged' ;
40
41
}
41
42
Original file line number Diff line number Diff line change @@ -54,8 +54,9 @@ export function activate(context: ExtensionContext) {
54
54
bindRequest ( MicroProfileLS . PROJECT_INFO_REQUEST ) ;
55
55
bindRequest ( MicroProfileLS . PROPERTY_DEFINITION_REQUEST ) ;
56
56
bindRequest ( MicroProfileLS . JAVA_CODELENS_REQUEST ) ;
57
- bindRequest ( MicroProfileLS . JAVA_HOVER_REQUEST ) ;
57
+ bindRequest ( MicroProfileLS . JAVA_CODEACTION_REQUEST ) ;
58
58
bindRequest ( MicroProfileLS . JAVA_DIAGNOSTICS_REQUEST ) ;
59
+ bindRequest ( MicroProfileLS . JAVA_HOVER_REQUEST ) ;
59
60
60
61
/**
61
62
* Delegate notifications from Java JDT LS to the MicroProfile LS
You can’t perform that action at this time.
0 commit comments