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
Example:
; '|' is cursor (1 2 3 '[|] 4 5 6) ; C-0 s (1 2 3 '[| 4 5 6)
The [ isn't balanced. This is no longer valid structure. What probably should have happened:
[
(1 2 3 '[| 4] 5 6)
The syntax-quote ``` has the same effect.
Backwards slurp also has problems. It breaks structure in some cases:
; back slurp a set literal (1 2 3 #{|} 4 5 6) ; C-9 s (1 2 #{3 |{} 4 5 6)
This is no longer valid structure. There's an extra {. What probably should have happened:
{
(1 2 #{3 |} 4 5 6)
Backwards slurping a quoted form simply deletes the quote.
(1 2 3 '[|] 4 5 6) ; C-9 s (1 2 3 [|] 4 5 6)
What probably should have happened:
(1 2 '[3 |] 4 5 6)
The text was updated successfully, but these errors were encountered:
@thickey do you feel like you could take a look at it?
Sorry, something went wrong.
No branches or pull requests
Example:
The
[
isn't balanced. This is no longer valid structure. What probably should have happened:The syntax-quote ``` has the same effect.
Backwards slurp also has problems.
It breaks structure in some cases:
This is no longer valid structure. There's an extra
{
. What probably should have happened:Backwards slurping a quoted form simply deletes the quote.
What probably should have happened:
The text was updated successfully, but these errors were encountered: