The sidebar of my wiki contains a list of tags that can be filtered through the search bar. The problem is that the tag list is refreshed after typing each character in the search bar, which is slow (it shows up to 200 tags). To make it work quicker, I've written a condition that looks at whether the search bar bar is visible: if so, it hides the tag list so it does not have to update it.
<$list filter="[prefix[$:/state/popup/search-dropdown]] [[The other is not exists]] +[first[]!is[system]]">
Because of `!is[system]`, the state tiddler will never be on the output, only the other title if it's the first (if the state tiddler exists, then the other title is in the second position).
The filter works with qualified titles, so it can be used with any state tiddler.