I want help in debugging the below given code.
\define get-current-plus-next-links()
[[$(event-navigateFromTitle)$]] [[$(event-navigateTo)$]]
\end
\define get-next-links()
[[$(event-navigateTo)$]]
\end
\define custom-actions()
<$list filter="[<modifier>match[normal]]" variable=nul>
<$action-listops $tiddler="$:/StoryList" $field="list" $subfilter="+[append<get-next-links>]"/>
<$action-setfield $tiddler="$:/HistoryList" current-tiddler=<<get-next-links>>/>
<$action-navigate $to=<<get-next-links>>/>
</$list>
<$list filter="[<modifier>match[ctrl]]" variable=nul>
<$action-setfield $tiddler="$:/StoryList" $field="list" $value=<<get-current-plus-next-links>>/>
</$list>
\end
- Firstly I want to know why the below given part of the code is not working
<$action-setfield $tiddler="$:/HistoryList" current-tiddler=<<get-new-links>>/>
<$action-navigate $to=<<get-new-links>>/>
while this code is working
<$action-listops $tiddler="$:/StoryList" $field="list" $subfilter="+[append<get-next-links>]"/>
- Also I want to convert this macro to a procedure. How to do it ?