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
Do in a tmp.clj (user namespace)
(defn foo [a] (bar a)) (defn bar [b] (+ 1 b))
Then from another namespace do (foo 1) once you are after (bar a) eval with C-x C-e. you should get Unable to resolve symbol: bar in this context.
(foo 1)
(bar a)
C-x C-e
Unable to resolve symbol: bar in this context
It's probably easy to fix. Will have a look once clojure-emacs/cider-nrepl#405 is merged.
The text was updated successfully, but these errors were encountered:
Track instrumentaion ns within debugged forms
60beb4f
... and eval during debugger session within that ns Fixes clojure-emacs/cider#2004
dceb0b0
Track instrumentation ns within debugged forms
063e578
clojure-emacs/cider-nrepl@06a40e3
No branches or pull requests
Do in a tmp.clj (user namespace)
Then from another namespace do
(foo 1)
once you are after(bar a)
eval withC-x C-e
. you should getUnable to resolve symbol: bar in this context
.It's probably easy to fix. Will have a look once clojure-emacs/cider-nrepl#405 is merged.
The text was updated successfully, but these errors were encountered: