You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's fully capable of working without it now, the var-query will return everything if no search is provided (excluding other filters such as metadata and test). For example, you should be able to use apropos to filter for all tests by using:
{:op "apropos" :var-query {"test?" 1}}
Not providing search is the same as having search set to #".*", but without the effort of actually running regex.
cider-nrepl/src/cider/nrepl/middleware/apropos.clj
Lines 21 to 22 in d18a6e8
If there is no
search
this will generate(?i:null)
which doesn't match much. It should do awhen
around thesearch
first.The text was updated successfully, but these errors were encountered: