We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d5938 commit 8f40d76Copy full SHA for 8f40d76
lua/elixir/init.lua
@@ -12,8 +12,9 @@ M.elixirls.open_output_panel = elixirls.open_output_panel
12
13
M.credo = {}
14
15
-M.credo.default_bin = vim.fn.fnamemodify(debug.getinfo(1).short_src, ":h")
16
- .. "/../../bin/credo-language-server"
+M.credo.default_bin = (
+ vim.fn.fnamemodify(debug.getinfo(1).source, ":h") .. "/../../bin/credo-language-server"
17
+):gsub("^@", "")
18
19
local enabled = function(value)
20
return value == nil or value == true
0 commit comments