-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMPscript extensions checker #29
Conversation
Thanks for the contribution! Before we can merge this, we need @FiB3 to sign the Salesforce Inc. Contributor License Agreement. |
src/vscode/src/checks.ts
Outdated
const extensionHandlers = { | ||
"sergey-agadzhanov.AMPscript": { | ||
handler: () => { | ||
vscode.window.showInformationMessage(`MCFS [AMPScript] extension is currently not supported by AMPscript Core.`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's update this message to convey what not supported means.
"The extension MCFS [AMPScript] is incompatible with AMPscript Core and will prevent AMPscript Core from debugging AMPscript."
src/vscode/src/checks.ts
Outdated
} | ||
}, | ||
"FiB.beautyAmp": { | ||
handler: () => true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this to test a positive test case?
Ok, updated the warning message. :) |
Backward compatibility checks are fine, no changes from this change. |
The goal of this PR is to help users regarding the issues #13 & #16 by notifying them about the currently incompatible extensions.