Open angelozerr opened 1 month ago
Today this notification error is handled with LanguageClientImpl with
@Override
public final void showMessage(MessageParams messageParams) {
ServerMessageHandler.showMessage(wrapper.getServerDefinition().getDisplayName(), messageParams, getProject());
}
Badly we cannot override it because of final modifier.
I removed this final modifier in https://github.com/redhat-developer/lsp4ij/pull/543 and you will able to override this showMessage to handle message as you wish.
Discussed in https://github.com/redhat-developer/lsp4ij/discussions/493