Replies: 1 comment 3 replies
-
|
Generally you can check whether cwd contain a sln file like this. (only eval once on load) cond = function()
return vim.fs.root(
vim.fn.getcwd(),
function(name, _) return name:match('%.slnx?$') or name:match('%.%w+proj$') end
) ~= nil
end |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently
neotest-vstestinterferes with my esp rust development as there is a hidden folder in that project that has a solution file.Nsidorenco/neotest-vstest#60
Can I somehow disable
neotest-vstest?{ "nvim-neotest/neotest", optional = true, dependencies = { { "Nsidorenco/neotest-vstest", enabled = false, }, }, },causes it to fail because the adapter is still there.
Beta Was this translation helpful? Give feedback.
All reactions