You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
First of all thanks for creating this great extension 😄, just one little thing that bugs me a bit:
When using Flow, there are a lot of word-based suggestions mixed with the Flow-based IntelliSense (see screenshot below) which makes exploring richer object structures more tedious. In TypeScript on the contrary VS Code does not show any word-based suggestions.
Is the a reason for showing them and if not is it possible to turn them off?
Besides I noticed in this example that label is shown twice.
TypeScript example:
Sample code for MainNav.jsx used for screenshot:
// @flowimportReact,{PureComponent}from'react';typeDummyType={/** Name for menu item */label: string;/** Url for link */url?: string;}classMainNavextendsPureComponent{props: {test: DummyType}render(){const{test}=this.props;return(<div>{test.label}</div>)}}exportdefaultMainNav
Versions:
VS Code: 1.10.2
flowtype.flow-for-vscode: 0.5.0
The text was updated successfully, but these errors were encountered:
Thanks for the great issue, I'm afraid it's a dupe of #97
I'm not sure if anyone has specifically explored the "remove the words used in the file" as I wonder if that comes from the default JS implementation. You're welcome to take a stab at seeing if that is feasible.
The 'words used in the file' suggestions also come from TypeScript, so they're the same issue. I've taken to just deleting the typescript extension folder but that's clearly not an optimal solution.
First of all thanks for creating this great extension 😄, just one little thing that bugs me a bit:
When using Flow, there are a lot of word-based suggestions mixed with the Flow-based IntelliSense (see screenshot below) which makes exploring richer object structures more tedious. In TypeScript on the contrary VS Code does not show any word-based suggestions.
Is the a reason for showing them and if not is it possible to turn them off?
Besides I noticed in this example that
label
is shown twice.TypeScript example:
Sample code for
MainNav.jsx
used for screenshot:Versions:
VS Code:
1.10.2
flowtype.flow-for-vscode:
0.5.0
The text was updated successfully, but these errors were encountered: