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
See the following two pairs of snippets, where I press x > with point=1.
point=1
Before:
(expand-file-name ;; (car (ensure-list dired-directory)))
After:
(thread-last ;; (expand-file-name) (car (ensure-list dired-directory)))
(expand-file-name (car (ensure-list dired-directory)))
(thread-last (ensure-list dired-directory) (car) (expand-file-name))
The text was updated successfully, but these errors were encountered:
In addition, when we convert thread-last form back to regular form, all comments within it are lost. Further, converting this snippet also fails:
thread-last
(thread-last (ensure-list dired-directory) ; (car) (expand-file-name))
Gets to:
(ensure-list dired-directory)
Notice that the call to car is now gone because of the trailing comment. I suspect the same issue is also manifested in #657.
car
Sorry, something went wrong.
No branches or pull requests
See the following two pairs of snippets, where I press x > with
point=1
.With comments (incorrect)
Before:
After:
Without comments (correct)
Before:
After:
The text was updated successfully, but these errors were encountered: