···125125- You can select multiple tracks using the SHIFT key and then add that selection
126126 to the queue or a playlist by right clicking on the selection (desktop only).
127127- You can reorder playlist tracks with drag-and-drop.
128128+129129+### Search
130130+131131+Searching is powered by [lunr.js](https://lunrjs.com/), which means you can use all [these wildcards](https://lunrjs.com/guides/searching.html) and other stuff to refine your search. A few examples:
132132+133133+```elm
134134+# "Parkway Drive" or "Iron Maiden".
135135+# The non-escaped space (ie. ` `, not `\ `) indicates a new term.
136136+Parkway\ Drive Iron\ Maiden
137137+138138+# Show me every track of which the artist's name starts with 'park'.
139139+artist:park*
140140+141141+# Show me every track from Parkway Drive's "Deep Blue" album.
142142+artist:Parkway\ Drive + album:Deep\ Blue
143143+144144+# Show me every track from Parkway Drive but not their "Atlas" album.
145145+artist:Parkway\ Drive - album:Atlas
146146+```