-
-
Notifications
You must be signed in to change notification settings - Fork 53
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
info fails to find the file when it lacks any def
s.
#75
Comments
PEZ
added a commit
to PEZ/orchard
that referenced
this issue
Nov 1, 2019
PEZ
added a commit
to PEZ/orchard
that referenced
this issue
Nov 1, 2019
Exposes issue clojure-emacs#75
Fixed by #76. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I have a file
foo.clj
without anydef
s in it. For instance if it has only this contentAnd then ask for
info
on it. I get no:file
path in the response.But if I have this:
Then I get the
:file
path for this file in the response.Steps to reproduce the problem
I'm not sure how to reproduce this in any other way than creating the files in a Clojure project:
foo.clj
with contents:bar.clj
with contentsThen I load
bar.clj
and use my favorite nREPL tool, Calva, to peek at the definion offoo
(alt+F12). Calva shows an info hover saying ”No definition found for foo”.Then If I add
(def foo 42)
tofoo.clj
, I can peek at the definition frombar.clj
.Environment & Version information
Clojure version
1.10.0
Java version
1.12
Operating system
MacOS Mojave
The text was updated successfully, but these errors were encountered: