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
Using a try catch statement in a closure seems to cause the syntax highlighting to become a bit wonky. A code example that will cause it is:
<cfscript> data = [1, 2, 3, 4]; data.each(function(item, index) { var errors = []; var flag = false; try { flag = true; } catch (any e) { flag = false; } if (flag) { error.append({'index': index}); } }); </cfscript>
Example of how it looks for me:
I'm using vscode-cfml version 0.3.1 and vscode version 1.21.1
The text was updated successfully, but these errors were encountered:
This is fixed in 0.4.0
Sorry, something went wrong.
No branches or pull requests
Using a try catch statement in a closure seems to cause the syntax highlighting to become a bit wonky. A code example that will cause it is:
Example of how it looks for me:
I'm using vscode-cfml version 0.3.1 and vscode version 1.21.1
The text was updated successfully, but these errors were encountered: