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
#?
(def tt 1) #?(:cljs (defn foo [])) #?(:cljs (defn bar [])) (defn bar []) | ;; <- point here
M-x clojure-backward-logical-sexp will land just before first #?(:cljs. This breaks eval of defuns in cider.
M-x clojure-backward-logical-sexp
#?(:cljs
The issue is with how clojure-backward-logical-sexp determines non-logical sexps. That simple regexp logic breaks there.
clojure-backward-logical-sexp
The text was updated successfully, but these errors were encountered:
71a8093
Merge pull request #444 from vspinu/backward-sexp
7f886fa
[Fix #443] Don't consider #? as starting non-logical sexp
[Fix clojure-emacs#443] Don't consider #? as starting non-logical sexp
99bc00f
No branches or pull requests
Actual behavior
M-x clojure-backward-logical-sexp
will land just before first#?(:cljs
. This breaks eval of defuns in cider.The issue is with how
clojure-backward-logical-sexp
determines non-logical sexps. That simple regexp logic breaks there.The text was updated successfully, but these errors were encountered: