We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6896244 + 533ae71 commit e2edc74Copy full SHA for e2edc74
lsp-io.el
@@ -127,7 +127,8 @@
127
(gethash method lsp--default-notification-handlers))))
128
(if handler
129
(funcall handler (lsp--parser-workspace p) params)
130
- (lsp-warn "Unknown method: %s" method))))
+ (unless (string-prefix-p "$" method)
131
+ (lsp-warn "Unknown method: %s" method)))))
132
133
(defun lsp--on-request (p request)
134
"Call the appropriate handler for REQUEST, and send the return value to the server."
0 commit comments