How can I make snippets (live template) with multi column typing after "Tab" Follow
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}
Please sign in to leave a comment.
When using a template like
this.$DATA$ = $DATA$
both values will be entered simultaneously, i.e. the result of entering data will be
thank you so much!