-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathconf.lua
More file actions
33 lines (33 loc) · 1.05 KB
/
conf.lua
File metadata and controls
33 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
return {
init_options = {
extendedClientCapabilities = {
actionableRuntimeNotificationSupport = true,
advancedExtractRefactoringSupport = true,
advancedGenerateAccessorsSupport = true,
advancedIntroduceParameterRefactoringSupport = true,
advancedOrganizeImportsSupport = true,
advancedUpgradeGradleSupport = true,
classFileContentsSupport = true,
clientDocumentSymbolProvider = false,
clientHoverProvider = false,
executeClientCommandSupport = true,
extractInterfaceSupport = true,
generateConstructorsPromptSupport = true,
generateDelegateMethodsPromptSupport = true,
generateToStringPromptSupport = true,
gradleChecksumWrapperPromptSupport = true,
hashCodeEqualsPromptSupport = true,
inferSelectionSupport = {
'extractConstant',
'extractField',
'extractInterface',
'extractMethod',
'extractVariableAllOccurrence',
'extractVariable',
},
moveRefactoringSupport = true,
onCompletionItemSelectedCommand = 'editor.action.triggerParameterHints',
overrideMethodsPromptSupport = true,
},
},
}