mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
0d2df34c58
* Add shortcut descriptions to Misc.multids * Update framed.js * Update simple.js * Add inputActions and refreshTitle to factory.js * Add inputActions and refreshTitle to edit.js * Update DefaultSearchResultList.tid * Update search.tid * Update ShortcutInfo.multids * Update shortcuts.multids * Create keyboard-driven-input.tid * Update tag-picker.tid * Create keyboard-driven-input_Macro.tid * Update EditTextWidget.tid * Update EditWidget.tid * Update engine.js * Update base.tid * Use primaryListFilter, secondaryListFilter, primaryList and secondaryList * Update tag-picker.tid * Update search.tid * Update DefaultSearchResultList.tid * Update keyboard-driven-input_Macro.tid * Fix typo udpate -> update * Update framed.js
24 lines
853 B
Plaintext
24 lines
853 B
Plaintext
title: $:/core/ui/DefaultSearchResultList
|
|
tags: $:/tags/SearchResults
|
|
caption: {{$:/language/Search/DefaultResults/Caption}}
|
|
|
|
\define searchResultList()
|
|
//<small>{{$:/language/Search/Matches/Title}}</small>//
|
|
|
|
<$list filter="[!is[system]search:title{$(searchTiddler)$}sort[title]limit[250]]">
|
|
<span class={{{[<currentTiddler>addsuffix[-primaryList]] -[<searchListState>get[text]] +[then[]else[tc-list-item-selected]] }}}>
|
|
<$transclude tiddler="$:/core/ui/ListItemTemplate"/>
|
|
</span>
|
|
</$list>
|
|
|
|
//<small>{{$:/language/Search/Matches/All}}</small>//
|
|
|
|
<$list filter="[!is[system]search{$(searchTiddler)$}sort[title]limit[250]]">
|
|
<span class={{{[<currentTiddler>addsuffix[-secondaryList]] -[<searchListState>get[text]] +[then[]else[tc-list-item-selected]] }}}>
|
|
<$transclude tiddler="$:/core/ui/ListItemTemplate"/>
|
|
</span>
|
|
</$list>
|
|
|
|
\end
|
|
<<searchResultList>>
|