better-comments
better-comments copied to clipboard
Can I add vbscript (vbs) as a supported lang?
In package.json I added "onLanguage:vbs", under activationEvents
and in parser.js I added the following under "setDelimiter(language)"
case 'vbs': this.setCommentFormat("'//", 'rem//', 'rem.||(', ')'); break;
I tried just using "'" as the comment format but that didn't work, so I copied another issue #294
So far, this didn't work. Any suggestions?