Skip to content
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

Syntax highlighting type parameters #694

Closed
alexrosenfeld10 opened this issue Dec 7, 2018 · 2 comments
Closed

Syntax highlighting type parameters #694

alexrosenfeld10 opened this issue Dec 7, 2018 · 2 comments
Assignees

Comments

@alexrosenfeld10
Copy link

  • VSCode Version: 1.28.2
  • OS Version: Windows 7

Steps to Reproduce:

  1. Create a .ts file
  2. Enter type parameters where the type parameters are on split lines. See example:
function foo<A, B, C, D>(arg) {
  console.log(arg);
}

// Highlighting will be just fine
foo<string, string, string, string>('test');

// Highlighting will break
foo<
  string,
  string,
  string,
  string>('test');

Does this issue occur when all extensions are disabled?: Yes/No

@alexrosenfeld10
Copy link
Author

Oh look, the highlighting breaks on GitHub too.

@mjbvz mjbvz self-assigned this Dec 7, 2018
@mjbvz mjbvz transferred this issue from microsoft/vscode Dec 12, 2018
@mjbvz
Copy link
Contributor

mjbvz commented Dec 12, 2018

Duplicate of #479

@mjbvz mjbvz marked this as a duplicate of #479 Dec 12, 2018
@mjbvz mjbvz closed this as completed Dec 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants