Skip to content

fix: only start credo if it finds a mix.exs with credo in it #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions lua/elixir/credo/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,22 @@ function M.setup(opts)
file = nil
end

local cmd
if type(opts.port) == "number" then
cmd = vim.lsp.rpc.connect("127.0.0.1", opts.port)
else
cmd = { opts.cmd, "--stdio" }
end
if file then
local cmd
if type(opts.port) == "number" then
cmd = vim.lsp.rpc.connect("127.0.0.1", opts.port)
else
cmd = { opts.cmd, "--stdio" }
end

vim.lsp.start {
name = "Credo",
cmd = cmd,
settings = {},
root_dir = vim.fs.dirname(file),
on_attach = opts.on_attach or function() end,
}
vim.lsp.start {
name = "Credo",
cmd = cmd,
settings = {},
root_dir = vim.fs.dirname(file),
on_attach = opts.on_attach or function() end,
}
end
end,
})
end
Expand Down