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
In these case, I normally need to trigger suggestion by shortcut, with auto suggestion would be more convinient.
↓ respensent cursor position.
↓
press space or enter in object destructure after comma:
space
enter
const { data, ↓ } = useProfile()
press space or enter after object literal property comma:
interface A { name: string; age: number; } // press `space` after `comma` const a: A = { name: 'a', ↓ }; // press `enter` after `comma` const a: A = { name: 'a', ↓ };
jsx component attribute when press enter:
<Stack direction="column" sx={{ height: 1, width: 1 }} ↓ alignItems="center" justifyContent="center" > {renderAffiliate()} </Stack>
The text was updated successfully, but these errors were encountered:
Ilanaya
No branches or pull requests
Benefit
In these case, I normally need to trigger suggestion by shortcut, with auto suggestion would be more convinient.
Note
↓
respensent cursor position.case1
press
space
orenter
in object destructure after comma:case2
press
space
orenter
after object literal property comma:case3
jsx component attribute when press
enter
:The text was updated successfully, but these errors were encountered: