We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The {{}} syntax is used to dynamically insert the arguments of your snippet into a certain part of the body of your snippet.
{{}}
{ ... Args = { ["foo"] = { default = 1 }, }, Body = { "foo is {{foo}}", -- It has to be the same name as the argument name. }, ... }
--@foo{foo=10} -- Replacement: foo is 10