Closed BrunoQuaresma closed 1 year ago
lines starting with #
will be interpreted as comments, you can manually push, unshift, or splice comment into the AST
config.unshift({
type: 2,
content: '# start coder vscode',
before: '\n',
after: '\n'
});
config.push({
type: 2,
content: '# end coder vscode',
before: '\n',
after: '\n'
});
Looks like there's nothing left to do here; SSH config doesn't support block comments, so the parser won't help with that.
yep, I'll close this one
Hi, I would like to add block comments around the config like this:
But I'm not finding a good way to do that. Thanks in advance!