We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
defroute
define-other-thing
Currently M-x detective-all doesn't show definitions such as:
(defroute route () …) (define-thing thing () …)
It should!
I tried some regexs with no avail:
;; lisp-mode.lisp :misc-regex (lem/detective:make-capture-regex :regex "^(?:\\(define-[a-zA-Z]* |\\(def[a-zA-Z]* )"
This one catches defroute but not define-thing:
define-thing
:regex "^\\(def[a-zA-Z]* "
We should add and escape a "-" in it somehow.
@Sasanidas Ideas?
thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently M-x detective-all doesn't show definitions such as:
It should!
I tried some regexs with no avail:
This one catches
defroute
but notdefine-thing
:We should add and escape a "-" in it somehow.
@Sasanidas Ideas?
thanks
The text was updated successfully, but these errors were encountered: