Skip to content

Commit

Permalink
Merge pull request #492 from plainbowstring/main
Browse files Browse the repository at this point in the history
ignore unsupported notification messages from omnisharp language server
  • Loading branch information
yegappan authored Mar 31, 2024
2 parents f5adbd1 + 274783a commit 12461e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions autoload/lsp/handlers.vim
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ export def ProcessNotif(lspserver: dict<any>, reply: dict<any>): void
# ccls language server notifications
'$ccls/publishSkippedRanges',
'$ccls/publishSemanticHighlight',
# omnisharp language server notifications
'o#/backgrounddiagnosticstatus',
'o#/msbuildprojectdiagnostics',
'o#/projectadded',
'o#/projectchanged',
'o#/projectconfiguration',
'o#/projectdiagnosticstatus',
'o#/unresolveddependencies',
]

if lsp_notif_handlers->has_key(reply.method)
Expand Down

0 comments on commit 12461e7

Please sign in to comment.