Skip to content

Commit 646fdd9

Browse files
authored
fix(julials): inverted assert check #3333
1 parent 1aded0f commit 646fdd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lua/lspconfig/configs/julials.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local function activate_env(path)
77
local bufnr = vim.api.nvim_get_current_buf()
88
local julials_clients = vim.lsp.get_clients { bufnr = bufnr, name = 'julials' }
99
assert(
10-
#julials_clients == 0,
10+
#julials_clients > 0,
1111
'method julia/activateenvironment is not supported by any servers active on the current buffer'
1212
)
1313
local function _activate_env(environment)

0 commit comments

Comments
 (0)