We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a2dbb commit 5453641Copy full SHA for 5453641
1 file changed
lib/ruby_lsp/server.rb
@@ -674,6 +674,10 @@ def text_document_formatting(message)
674
"Formatting error: #{error.message}",
675
type: Constant::MessageType::ERROR,
676
))
677
+ send_message(Notification.window_log_message(
678
+ "Formatting failed with\r\n: #{error.full_message}",
679
+ type: Constant::MessageType::ERROR,
680
+ ))
681
send_empty_response(message[:id])
682
end
683
@@ -919,6 +923,10 @@ def text_document_diagnostic(message)
919
923
"Error running diagnostics: #{error.message}",
920
924
921
925
926
927
+ "Diagnostics failed with\r\n: #{error.full_message}",
928
929
922
930
931
932
0 commit comments