forked from nvim-java/nvim-java-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
39 lines (37 loc) · 1.14 KB
/
config.lua
File metadata and controls
39 lines (37 loc) · 1.14 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
34
35
36
37
38
39
local M = {}
function M.get_config()
return {
init_options = {
extendedClientCapabilities = {
actionableRuntimeNotificationSupport = true,
advancedExtractRefactoringSupport = true,
advancedGenerateAccessorsSupport = true,
advancedIntroduceParameterRefactoringSupport = true,
advancedOrganizeImportsSupport = true,
advancedUpgradeGradleSupport = true,
classFileContentsSupport = true,
clientDocumentSymbolProvider = true,
clientHoverProvider = true,
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,
},
},
}
end
return M