You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is the source of your issue, but I've noticed that PreloadingActivity is no longer called in the latest versions of Intellij. In README.md, it suggests to use this but it has been replaced by StartupActivitiy (also deprecated) and ProjectActivity in later versions of Intellij. Here's how I approached it:
publicclassMyStartupActivityimplementsStartupActivity {
privatestaticbooleanINITIALIZED_APPLICATION = false;
/** * Called after each project is started */@OverridepublicsynchronizedvoidrunActivity(@NotNullProjectproject) {
// Only initialize the application onceif (!INITIALIZED_APPLICATION) {
setupLsp();
INITIALIZED_APPLICATION = true;
}
}
privatevoidsetupLsp() {
IntellijLanguageClient.addServerDefinition(newRawCommandServerDefinition("bal", newString[]{"path/to/launcher-script.sh"}));
}
Description:
update to 0.95.2, diagnostics not work
Affected Versions:
0.95.2
OS, DB, other environment details and versions:
macos
The text was updated successfully, but these errors were encountered: