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
fix(template): expandable variables in lua expr (#841)
This fixes the order which the template is compiled. Previously, the
expressions %() were compiled before expandable variables (such as %x).
This made the example template in [1] to produce:
* [[url][x]]
instead of
* [[url][end part of the url]]
By doing the expression compilation after expandable ones, this issue is
resolved.
[1] https://github.com/nvim-orgmode/orgmode/wiki/Getting-Started#captures
0 commit comments