I'm experimenting with making my own schemedef, using the vhdl as a template. The language (Consistent Changes http://www.sil.org/computing/catalog/show_software.asp?id=4) uses " c " to initiate a comment in the code. The spaces around the c are important. The preceeding space isn't necessary if it's at the beginning of a line. The language doesn't support continued comments. An end of line terminates the comment. In the schemedef file I changed:
<comments>
<line start="--" continuation="\" />
</comments>
to be:
<comments>
<line start=" c " />
</comments>
but it doesn't work. If I take out the space then anything starting with "c" is matched. The space after the c is needed. Any ideas how I can make it work?
I have many more questions about schemedef but I'll start with this one. :)
Thanks.