feat(neovim): add neotest-dotnet
This commit is contained in:
parent
c0ae99447e
commit
919b504012
|
@ -1,5 +1,6 @@
|
||||||
---@type LazySpec
|
---@type LazySpec
|
||||||
return {
|
return {
|
||||||
|
{
|
||||||
"seblyng/roslyn.nvim",
|
"seblyng/roslyn.nvim",
|
||||||
ft = { "cs", "razor" },
|
ft = { "cs", "razor" },
|
||||||
commit = "490fd2d0f76249032ef6ce503e43ccdaeed9616e",
|
commit = "490fd2d0f76249032ef6ce503e43ccdaeed9616e",
|
||||||
|
@ -25,7 +26,9 @@ return {
|
||||||
"--logLevel=Information",
|
"--logLevel=Information",
|
||||||
"--extensionLogDirectory=" .. vim.fs.dirname(vim.lsp.get_log_path()),
|
"--extensionLogDirectory=" .. vim.fs.dirname(vim.lsp.get_log_path()),
|
||||||
"--razorSourceGenerator=" .. rzlspath .. "/lib/rzls/Microsoft.CodeAnalysis.Razor.Compiler.dll",
|
"--razorSourceGenerator=" .. rzlspath .. "/lib/rzls/Microsoft.CodeAnalysis.Razor.Compiler.dll",
|
||||||
"--razorDesignTimePath=" .. rzlspath .. "/lib/rzls/Targets/Microsoft.NET.Sdk.Razor.DesignTime.targets",
|
"--razorDesignTimePath="
|
||||||
|
.. rzlspath
|
||||||
|
.. "/lib/rzls/Targets/Microsoft.NET.Sdk.Razor.DesignTime.targets",
|
||||||
},
|
},
|
||||||
---@type vim.lsp.ClientConfig
|
---@type vim.lsp.ClientConfig
|
||||||
---@diagnostic disable-next-line: missing-fields
|
---@diagnostic disable-next-line: missing-fields
|
||||||
|
@ -86,7 +89,8 @@ return {
|
||||||
|
|
||||||
local target_bufnr = vim.uri_to_bufnr(params.textDocument.uri)
|
local target_bufnr = vim.uri_to_bufnr(params.textDocument.uri)
|
||||||
local line_count = vim.api.nvim_buf_line_count(target_bufnr)
|
local line_count = vim.api.nvim_buf_line_count(target_bufnr)
|
||||||
local last_line = vim.api.nvim_buf_get_lines(target_bufnr, line_count - 1, line_count, true)[1]
|
local last_line =
|
||||||
|
vim.api.nvim_buf_get_lines(target_bufnr, line_count - 1, line_count, true)[1]
|
||||||
|
|
||||||
local returnvalue = lsp_request("textDocument/semanticTokens/range", {
|
local returnvalue = lsp_request("textDocument/semanticTokens/range", {
|
||||||
textDocument = params.textDocument,
|
textDocument = params.textDocument,
|
||||||
|
@ -117,4 +121,15 @@ return {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nvim-neotest/neotest",
|
||||||
|
dependencies = { "Issafalcon/neotest-dotnet", config = function() end },
|
||||||
|
opts = function(_, opts)
|
||||||
|
if not opts.adapters then
|
||||||
|
opts.adapters = {}
|
||||||
|
end
|
||||||
|
table.insert(opts.adapters, require "neotest-dotnet" (require("astrocore").plugin_opts "neotest-dotnet"))
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue