mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(omnisharp): add more handlers
This commit is contained in:
parent
7bebc40333
commit
92ab058118
1 changed files with 10 additions and 1 deletions
|
|
@ -46,7 +46,16 @@ return {
|
||||||
omnisharp = {
|
omnisharp = {
|
||||||
handlers = {
|
handlers = {
|
||||||
["textDocument/definition"] = function(...)
|
["textDocument/definition"] = function(...)
|
||||||
return require("omnisharp_extended").handler(...)
|
return require("omnisharp_extended").definition_handler(...)
|
||||||
|
end,
|
||||||
|
["textDocument/typeDefinition"] = function(...)
|
||||||
|
return require("omnisharp_extended").type_definition_handler(...)
|
||||||
|
end,
|
||||||
|
["textDocument/references"] = function(...)
|
||||||
|
return require("omnisharp_extended").references_handler(...)
|
||||||
|
end,
|
||||||
|
["textDocument/implementation"] = function(...)
|
||||||
|
return require("omnisharp_extended").implementation_handler(...)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
keys = {
|
keys = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue