-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
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
Metadata inference for 'proxy' vars #788
Comments
vemv
added a commit
to clojure-emacs/orchard
that referenced
this issue
Aug 2, 2023
vemv
added a commit
to clojure-emacs/orchard
that referenced
this issue
Aug 2, 2023
vemv
added a commit
to clojure-emacs/orchard
that referenced
this issue
Aug 2, 2023
vemv
added a commit
to clojure-emacs/orchard
that referenced
this issue
Aug 2, 2023
vemv
added a commit
to clojure-emacs/orchard
that referenced
this issue
Aug 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following pattern can be sometimes found in Clojure:
Where
def
lacks a docstring,...For those cases, the
track-state
middleware could add :doc metadata for CIDER usage.Note that this is unobstrusive (non-mutative): users querying
(-> #'x meta :doc)
would not see our infered value.We already are doing something similar in #787 (for :style/indent)
So, this pattern can be used for:
This can be done for clj and cljs alike.
The text was updated successfully, but these errors were encountered: