We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88cdc41 commit fc55f0dCopy full SHA for fc55f0d
2 files changed
.github/workflows/test.yml
@@ -33,3 +33,6 @@ jobs:
33
run: make test-unit
34
- name: Run Functional Tests
35
run: make test-functional
36
+ - name: debug
37
+ if: always()
38
+ run: sudo cat ~/.local/state/nvim/lsp.log
tests/lsp_init.lua
@@ -63,7 +63,7 @@ for _, lsp in ipairs(lsp_list) do
63
64
-- Wait for installation to complete with timeout
65
local start_time = vim.loop.now()
66
- local timeout = 60000 -- in milliseconds
+ local timeout = 120000 -- in milliseconds
67
68
while not installation_complete do
69
vim.wait(1000) -- Check every second
0 commit comments