mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
LSP: Support LocationLink (#12231)
* support LocationLink in callbacks * announce linkSupport in client capabilities
This commit is contained in:
@@ -644,6 +644,18 @@ function protocol.make_client_capabilities()
|
||||
-- TODO(tjdevries): Implement this
|
||||
contextSupport = false;
|
||||
};
|
||||
declaration = {
|
||||
linkSupport = true;
|
||||
};
|
||||
definition = {
|
||||
linkSupport = true;
|
||||
};
|
||||
implementation = {
|
||||
linkSupport = true;
|
||||
};
|
||||
typeDefinition = {
|
||||
linkSupport = true;
|
||||
};
|
||||
hover = {
|
||||
dynamicRegistration = false;
|
||||
contentFormat = { protocol.MarkupKind.Markdown; protocol.MarkupKind.PlainText };
|
||||
|
||||
Reference in New Issue
Block a user