Skip to content

Commit

Permalink
Merge branch '210-improve-settings-change-success-message' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gmickus committed Oct 16, 2024
2 parents 07bda0f + 74612f5 commit 632b196
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/utils/ConfigurationManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ export class ConfigurationManager2 implements IConfigurationManager {
workspace.onDidChangeConfiguration((e) => {
if (e.affectsConfiguration("AblFormatter")) {
this.reloadConfig = true;
window.showInformationMessage("ABL Formatter was changed2!");
window.showInformationMessage(
"ABL Formatter settings were changed!"
);
}

if (e.affectsConfiguration("abl.completion")) {
this.reloadExternalConfig = true;
window.showInformationMessage("ABL cassing was changed2!");
window.showInformationMessage(
"ABL completion settings were changed!"
);
}
});
}
Expand Down

0 comments on commit 632b196

Please sign in to comment.