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
This issue serves to capture various parinfer cases which don't work well:
output_tokens (do (print (str "<output:" output_tokens ">")) (flush))
Here, if the caret is right before output_tokens and that symbol is wrapped in parens, the indentation breaks.
output_tokens
The text was updated successfully, but these errors were encountered:
Also:
(.offer queue {:type :content :text text :role role}))
Similarly, wrapping queue in parens breaks.
queue
Sorry, something went wrong.
(let [a 1 b 2 c 3] a)
Splitting after 1 breaks indentation like this:
1
(let [a 1] [b 2 c 3] a)
(p/let [response (get-session dynamo session-id)] (if-let [item (some-> (:Item response) from-item)]))
Here, deleting a char from p/let breaks.
p/let
No branches or pull requests
This issue serves to capture various parinfer cases which don't work well:
Here, if the caret is right before
output_tokens
and that symbol is wrapped in parens, the indentation breaks.The text was updated successfully, but these errors were encountered: