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
It seems like using nested generic types ends up breaking syntax highlighting for the rest of the file.
// @flow const OOF = new Map<number, Map<number, string>>(); export function thing(): Array<number> { return [1, 2, 3]; }
Formatting the code this way doesn't cause the same problem, if it helps track down the root cause:
// @flow const OOF = new Map< number, Map< number, string, > >(); export function thing(): Array<number> { return [1, 2, 3]; }
Thanks in advance for your help!
The text was updated successfully, but these errors were encountered:
I commented out this line and it seems to be working on my machine now. Not sure what the ramifications are.
https://github.com/pangloss/vim-javascript/blob/master/extras/flow.vim#L12
It was added in #1161.
Sorry, something went wrong.
No branches or pull requests
It seems like using nested generic types ends up breaking syntax highlighting for the rest of the file.
Minimal Repro
Formatting the code this way doesn't cause the same problem, if it helps track down the root cause:
Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: