Sometimes I would like to enter a multi word string and have orderless treat the entire string as a literal, rather than have it break it into components at the spaces. One (clunky) way of doing this is using regex: first[[:space:]]second[[:space:]]third. But ideally I could write something like ='first second third' instead. Is something like this possible?
Sometimes I would like to enter a multi word string and have orderless treat the entire string as a literal, rather than have it break it into components at the spaces. One (clunky) way of doing this is using regex:
first[[:space:]]second[[:space:]]third
. But ideally I could write something like='first second third'
instead. Is something like this possible?