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
Does HSM support autocompletion like export default (_context: Context, args: Arguments) => { // t:[#s.]
The text was updated successfully, but these errors were encountered:
it does but you need a // @autocomplete foo: "bar" comment above your export default.
// @autocomplete foo: "bar"
export default
Notes for future me: I should look for autocomplete comments in the following places:
ExportDefaultDeclaration
.leadingComments
.declaration
ArrowFunctionExpression
FunctionDeclaration
.body
BlockStatement
.innerComments
Sorry, something went wrong.
Thank you
EDIT: Sorry for the not really related question
It seems to work now, I have this in my final js function(f,e){//t: [#s.your.targets] But after upload I only get braste.t1 } when I press tab
function(f,e){//t: [#s.your.targets]
braste.t1 }
please can you send a minimal reproduction to @samualn on discord
@samualn
No branches or pull requests
Does HSM support autocompletion like
export default (_context: Context, args: Arguments) => { // t:[#s.]
The text was updated successfully, but these errors were encountered: