You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
This is working really well for me! With one exception:
Say that I type (println "foo"). It actually comes out as (println "foo")") -- when I type the closing quote, an extra quote is created (so at that point it's (println "foo"" with the cursor before the final quote), and then typing the closing paren ends up between those two final quotes. This causes hard-to-track-down bugs in the code, because an indeterminate amount of extra stuff is considered quoted.
I'm on Ubuntu/Gnome, on develop branch, GNU Emacs 25.1.1. Happy to provide any other stats if it'd be helpful.
Thanks for all your work on this!
The text was updated successfully, but these errors were encountered:
In my emacs config, I made it disable smartparens on parinfer-mode-enable-hook and enable smartparens on the parinfer-mode-disable-hooks. Seems to be working well for me.
@DogLooksGood no problem, thanks for the reply! I don't have parinfer-mode installed anymore, but the example in the original post was the most minimal one I could find. It makes sense that it would be just the problem of trying to run parinfer with smartparens activated.
Thanks!
Hi,
This is working really well for me! With one exception:
Say that I type
(println "foo")
. It actually comes out as(println "foo")")
-- when I type the closing quote, an extra quote is created (so at that point it's(println "foo""
with the cursor before the final quote), and then typing the closing paren ends up between those two final quotes. This causes hard-to-track-down bugs in the code, because an indeterminate amount of extra stuff is considered quoted.I'm on Ubuntu/Gnome, on
develop
branch, GNU Emacs 25.1.1. Happy to provide any other stats if it'd be helpful.Thanks for all your work on this!
The text was updated successfully, but these errors were encountered: