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
crml
This is sort of similar to #21, though I'm not sure if it's technically related or not.
If I have this form:
(let [advertiser (-> advertiser (unparse-custom-fields :rtbcustomfields))] (if (zero? id) (api-client/create-advertiser! (api-key) advertiser) (api-client/update-advertiser! (api-key) advertiser)))
And I move my cursor to the (zero? id) form and do crml, naming the binding id-zero?, this is the result:
(zero? id)
id-zero?
(let [advertiser (-> advertiser (unparse-custom-fields :rtbcustomfields)) id-zero? (zero? id)] (if id-zero? (api-client/create-advertiser! (api-key) advertiser) (api-client/update-advertiser! (api-key) advertiser)))
(This is with parinfer disabled. With parinfer enabled, it's worse because parinfer rearranges my parens based on the indentation.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is sort of similar to #21, though I'm not sure if it's technically related or not.
If I have this form:
And I move my cursor to the
(zero? id)
form and docrml
, naming the bindingid-zero?
, this is the result:(This is with parinfer disabled. With parinfer enabled, it's worse because parinfer rearranges my parens based on the indentation.)
The text was updated successfully, but these errors were encountered: