File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function M.get_config()
12
12
advancedUpgradeGradleSupport = true ,
13
13
classFileContentsSupport = true ,
14
14
clientDocumentSymbolProvider = true ,
15
- clientHoverProvider = true ,
15
+ clientHoverProvider = false ,
16
16
executeClientCommandSupport = true ,
17
17
extractInterfaceSupport = true ,
18
18
generateConstructorsPromptSupport = true ,
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ function M.get_root_finder(root_markers)
98
98
log .debug (' finding the root_dir with root_markers ' , root_markers )
99
99
100
100
local root = util .root_pattern (unpack (root_markers ))(file_name )
101
+ -- vim.fs.root
101
102
102
103
if root then
103
104
log .debug (' root of ' .. file_name .. ' is ' .. root )
Original file line number Diff line number Diff line change 1
- --- @class List
1
+ --- @class java-core. List
2
2
local M = {}
3
3
4
4
--- Returns a new list
5
5
--- @param o ? table
6
- --- @return List
6
+ --- @return java-core. List
7
7
function M :new (o )
8
8
o = o or {}
9
9
setmetatable (o , self )
32
32
33
33
--- Returns a list of mapped values
34
34
--- @param mapper fun ( value : any ): any
35
- --- @return List
35
+ --- @return java-core. List
36
36
function M :map (mapper )
37
37
local mapped = M :new ()
38
38
@@ -44,7 +44,7 @@ function M:map(mapper)
44
44
end
45
45
46
46
--- Flatten a list
47
- --- @return List
47
+ --- @return java-core. List
48
48
function M :flatten ()
49
49
local flatten = M :new ()
50
50
59
59
60
60
--- Merge a given list values to current list
61
61
--- @param list any[]
62
- --- @return List
62
+ --- @return java-core. List
63
63
function M :concat (list )
64
64
local new_list = M :new ()
65
65
You can’t perform that action at this time.
0 commit comments