We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To add Batch Support:
In package.json add "onLanguage:batch", under "onLanguage:ada",
In parser.ts add: case "bat": this.setCommentFormat("::", "rem.||(", ")"); break;
sample batch:
@echo off cls echo single line comments ::! alert ::TODO: something echo multi line comments rem.||( * ! alert * TODO something ) :end
The text was updated successfully, but these errors were encountered:
Adding this change to the .bat and .cmd extension would help
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
To add Batch Support:
In package.json add
"onLanguage:batch", under "onLanguage:ada",
In parser.ts add:
case "bat": this.setCommentFormat("::", "rem.||(", ")"); break;
sample batch:
The text was updated successfully, but these errors were encountered: