I would like to be able to use comments similar to the Bash style in a plain text document.
So when a line begins with # i would like all text following on that line to change to a different color.
I have attempted to edit my color scheme (Mariana) by editing the Comment rule:
{
“name”: “Comment”,
“scope”: “comment, punctuation.definition.comment”,
“foreground”: “var(blue6)”
},
However it does not change the colors of comments.
I suspect it is because the scope is not accurate for the type of comment I want to use, but I don’t know what that should be.
I have also attempted to find the correct type using the PackageResourceViewer, but when i try to open the resource for Bash it is not listed.
To be clear, the file is not a bash file, it is note code, it is a plain text list that i want to be able to change font color of a given line like a comment in code.
Thanks