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
All three languages, elm, haskell, purescript have standard style quoted strings using double quotes:
"I am a string with a speeling misteek."
elm and purescript also support multi-line strings with triple quotes:
""" If monads are like burrrritos Can I put salza on them? """
All three languages are described by one entry in lib/doctype.js:
case 'elm': case 'haskell': case 'purescript': return new Code_1.default({ comment_start: '{-', comment_end: '-}', comment_line: '--' });
But that entry only describes comments. That entry probably needs to be split into two (one for elm & purescript, one for haskell) - like so:
case 'elm': case 'purescript': return new Code_1.default({ comment_start: '{-', comment_end: '-}', comment_line: '--', string_inline: '"', string_quote: '\\', string_multiline: '"""'}); case 'haskell': return new Code_1.default({ comment_start: '{-', comment_end: '-}', comment_line: '--', string_inline: '"', string_quote: '\\'});
I would test that... but don't have the environment to build and test VCS extensions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
All three languages, elm, haskell, purescript have standard style quoted strings using double quotes:
elm and purescript also support multi-line strings with triple quotes:
All three languages are described by one entry in lib/doctype.js:
But that entry only describes comments. That entry probably needs to be split into two (one for elm & purescript, one for haskell) - like so:
I would test that... but don't have the environment to build and test VCS extensions.
The text was updated successfully, but these errors were encountered: