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()
1212 advancedUpgradeGradleSupport = true ,
1313 classFileContentsSupport = true ,
1414 clientDocumentSymbolProvider = true ,
15- clientHoverProvider = true ,
15+ clientHoverProvider = false ,
1616 executeClientCommandSupport = true ,
1717 extractInterfaceSupport = true ,
1818 generateConstructorsPromptSupport = true ,
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ function M.get_root_finder(root_markers)
9898 log .debug (' finding the root_dir with root_markers ' , root_markers )
9999
100100 local root = util .root_pattern (unpack (root_markers ))(file_name )
101+ -- vim.fs.root
101102
102103 if root then
103104 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
22local M = {}
33
44--- Returns a new list
55--- @param o ? table
6- --- @return List
6+ --- @return java-core. List
77function M :new (o )
88 o = o or {}
99 setmetatable (o , self )
3232
3333--- Returns a list of mapped values
3434--- @param mapper fun ( value : any ): any
35- --- @return List
35+ --- @return java-core. List
3636function M :map (mapper )
3737 local mapped = M :new ()
3838
@@ -44,7 +44,7 @@ function M:map(mapper)
4444end
4545
4646--- Flatten a list
47- --- @return List
47+ --- @return java-core. List
4848function M :flatten ()
4949 local flatten = M :new ()
5050
5959
6060--- Merge a given list values to current list
6161--- @param list any[]
62- --- @return List
62+ --- @return java-core. List
6363function M :concat (list )
6464 local new_list = M :new ()
6565
You can’t perform that action at this time.
0 commit comments