You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support positional args as template variables (_1, _2, etc.)
Positional CLI arguments can now be referenced in the body using
{{ _1 }}, {{ _2 }}, etc. template syntax.
Example:
md translate.claude.md "bread" "taco"
With body:
Translate to french: {{ _1 }}
Translate to spanish: {{ _2 }}
0 commit comments