You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which then sets is_json_config_loaded = true, even though it was an empty table because there was no JSON.
That then triggers the "loaded vscode json" message in the healthcheck. So I don't believe that's relevant in this case, unless the fact that it things an (empty) vscode file was loaded makes it not inject the check config, but I haven't checked if that's the case.
Looking at this:
rustaceanvim/lua/rustaceanvim/lsp/init.lua
Lines 43 to 48 in 10efd4d
If I run this:
It returns an empty table. Which then returns an empty table here:
rustaceanvim/lua/rustaceanvim/lsp/init.lua
Lines 46 to 48 in 10efd4d
That is used here:
rustaceanvim/lua/rustaceanvim/lsp/init.lua
Lines 69 to 72 in 10efd4d
Which triggers this:
rustaceanvim/lua/rustaceanvim/config/json.lua
Lines 75 to 79 in 10efd4d
Which triggers this:
rustaceanvim/lua/rustaceanvim/config/json.lua
Lines 64 to 71 in 10efd4d
Which then sets
is_json_config_loaded = true
, even though it was an empty table because there was no JSON.That then triggers the "loaded vscode json" message in the healthcheck. So I don't believe that's relevant in this case, unless the fact that it things an (empty) vscode file was loaded makes it not inject the
check
config, but I haven't checked if that's the case.Originally posted by @JeanMertz in #652 (reply in thread)
The text was updated successfully, but these errors were encountered: