I'm trying to make a .sublime-completions
file where all the commands start with "&". The general format for this is:
{
"trigger": "&Command",
"annotation": "basic function",
"contents": "&Command",
"kind": "function",
"details": "Command description"
},
The problem is that the trigger isn't picking up the & symbol so it'll only show after typing the first letter of the command (in this example, it's "C") and outputs an extra "&" symbol.
How can I get the "&" to be included with the trigger? I tried putting \ infront of the & symbol but that didn't work.