-
-
Notifications
You must be signed in to change notification settings - Fork 247
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
Fix clojure-find-ns #661
Fix clojure-find-ns #661
Conversation
p4v4n
commented
Sep 4, 2023
- when ns is preceded by whitespace or inside comment form.
- closes clojure-find-ns breaks if the ns form is preceded by whitespace #593
- when ns is preceded by whitespace or inside comment form.
clojure-mode.el
Outdated
@@ -2275,6 +2275,8 @@ This will skip over sexps that don't represent objects, so that ^hints and | |||
(condition-case nil | |||
(save-excursion | |||
(beginning-of-defun) | |||
(clojure-forward-logical-sexp 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps we should add some comments here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change is to handle whitespace before comment form. Not sure if this is the best way to do it though.
Added a couple of comments now to make the intent more clear.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My point was mainly that it looks a bit weird that we're going forward and backwards back-to-back. If that's used often in the code we can make a function I guess.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. But I am not sure what is the correct abstraction anymore as it's more of a hack.
This is the third occurrence in the codebase but there are other places where similar logic was used with different functions and some places where edge cases are not handled. Even my current change will still break if there are multiple expressions in the same line.
Looks like all these extra steps are only needed in many places because of beginning-of-defun
behaving 'incorrectly'.
For ex:
1 (ns abc) (defn abc []
(comment
(println "try (clojure-beginning-of-defun-function) from here"))
"abc")
Now running (clojure-beginning-of-defun-function)
or (beginning-of-defun)
from any of the inner expressions takes the cursur to the beginning of the line (before 1).
The expected behaviour IMO from the name would be having the cursor before (defn
.
The docstring mentions this but there is no way to easy way to control the end location of the cursor.
clojure-mode uses beginning-of-defun a lot so there are a lot of unhandled edge cases.
For example take these two code blocks:
(defn s1 [x] (str x)) (+ 1 2)
(defn s2
[x] (str x))
(defn s1 [x] (str x))
(+ 1 2)
(defn s2
[x] (str x))
Run M-x cider-eval-defun-at-point
(C-c C-c) inside (+ 1 2) and the result is different in the two scenarios.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tldr: IIUC bad choice of abstraction from beginning-of-defun
fn has propagated many edge cases possibly in all lisp modes.
Maybe I am missing something basic or someone already solved this issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for diving deep into this!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merged latest master and removed the extra lines here.
Will wait for @vemv to resolve the other conversation.
Nice work! The other day I tried to fix a similar issue but my fix broke other things. Could you check if adding these these tests would also pass? I was particularly interested in this case: 1 (ns foo) however, if it's too hard of a challenge (as it was for me), feel free to leave it. |
@vemv Interesting. I haven't thought about this case before. Your change to the regex is more correct as it will allow any form before the comment form. Fixing it properly requires making A simpler fix would be take your regex change and delete this unlikely test case! Allowing any forms before comment is far more likely scenario than having fake ns in metadata. |
I agree. |
Btw, you'll also have to rebase this on top of |
Already merged latest master. The commits should be squashed here so didn't bother with a rebase. |
@p4v4n thanks much for looking into that! I'd be fine with no action for the time being. Perhaps, a year from now most people will be using clojure-ts-mode, which since isn't regex-based, shouldn't be as prone to false positives. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after a couple minor suggestions
test/clojure-mode-util-test.el
Outdated
(expect (clojure-find-ns) :to-equal "bar")) | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(expect (clojure-find-ns) :to-equal "bar")) | |
) | |
(expect (clojure-find-ns) :to-equal "bar"))) |
When put like this, I actually agree too. (I could as well flip a coin tbh). Feel free to tackle it in a follow-up PR. |
I was partially joking about deleting the test case. My past experiences with emacs lisp regexes were not very pleasant.(I haven't used the rx macros though TBF) Will work on it in a separate branch.We can go with the compromise solution if the proper regex is difficult. |