Configure Omnisharp #279
-
I am stuck with Omnisharp. i have this configuration file:
When i open a cs file it loads the LSP server but i got this prompt each time i go to This is how i load my LSP-related plugins (i use Lazy.nvim):
|
Beta Was this translation helpful? Give feedback.
Answered by
VonHeikemen
Jun 30, 2023
Replies: 1 comment
-
Neovim's documentation about that error lsp_config['omnisharp'].setup {
handlers = {
["textDocument/definition"] = require('omnisharp_extended').handler,
},
cmd = { '/usr/bin/OmniSharp', '--languageserver' },
on_init = function(client)
client.server_capabilities.semanticTokensProvider = nil
end
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Wiliamfm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Neovim's documentation about that error
E5248
suggest this is related to syntax highlight. Um... try to disable semantic highlight, like this.