How can I make snippets (live template) with multi column typing after "Tab"

JavaScript
for example I want to make:

constructor(store, data) {
this.store = store
this.data = data
}
I want to do:
[some short cut] + Tab ---> this.{caret} = {caret}

2 comments
Comment actions Permalink

When using a template like

this.$DATA$ = $DATA$

both values will be entered simultaneously, i.e. the result of entering data will be

this.data = data
1
Comment actions Permalink

thank you so much!

0

Please sign in to leave a comment.