So I’m trying to autocomplete this:
number(int number)
but when I type number and then press tab to perform the completion I want it to be completed like
number(1)
where 1 is the default parameter and if its possible after the 1 the cursor.
This is my autocompletion does work like this
{ "trigger": "number", "contents": "number()" }
but not like how I wanted it to be, Like this:
{ "trigger": "number", "contents": "number(1)" }
Is there a way to solve this or make this possible without the use of external scripts?
