File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 11
11
* ` FIX ` [ #1368 ] ( https://github.com/sumneko/lua-language-server/issues/1368 )
12
12
* ` FIX ` [ #1370 ] ( https://github.com/sumneko/lua-language-server/issues/1370 )
13
13
* ` FIX ` [ #1375 ] ( https://github.com/sumneko/lua-language-server/issues/1375 )
14
+ * ` FIX ` [ #1391 ] ( https://github.com/sumneko/lua-language-server/issues/1391 )
14
15
15
16
## 3.5.0
16
17
` 2022-7-19 `
Original file line number Diff line number Diff line change @@ -504,6 +504,10 @@ local function check3rd(uri)
504
504
if not config .get (uri , ' Lua.workspace.checkThirdParty' ) then
505
505
return
506
506
end
507
+ local scp = scope .getScope (uri )
508
+ if not scp :get ' canCheckThirdParty' then
509
+ return
510
+ end
507
511
local thirdConfigs = load3rdConfig (uri ) or false
508
512
if not thirdConfigs then
509
513
return
515
519
local function check3rdOfWorkspace (suri )
516
520
local scp = scope .getScope (suri )
517
521
scp :set (' thirdConfigsCache' , nil )
522
+ scp :set (' canCheckThirdParty' , true )
518
523
local id = ' check3rdOfWorkspace:' .. scp :getName ()
519
524
await .close (id )
520
525
--- @async
You can’t perform that action at this time.
0 commit comments