-
Notifications
You must be signed in to change notification settings - Fork 132
Highlight arrow function parameters #22
New issue
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
Labels
Comments
From @alexandrudima on December 4, 2015 14:27 @Bigous can you provide the code snippet please. |
From @Bigous on December 4, 2015 16:47 Sure... app.get('/test/', (req, res) => {
}); This is colored correctly app.get('/test/', function (req, res) {
}); Just like here in github :D []s |
Fixed by #257 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From @Bigous on December 4, 2015 12:48
When you are writing in TypeScript, arrow function does not get the parameter names colored. Using anonymous functions you get it colored.
Copied from original issue: microsoft/vscode#1013
The text was updated successfully, but these errors were encountered: