neil-lindquist / lisp-paredit

Paredit for Atom
MIT License
24 stars 5 forks source link

Strict mode should not apply to bracket in string #12

Closed tony612 closed 4 years ago

tony612 commented 8 years ago

I want to type this code:

(define (print-point p)
  (newline)
  (display "(")
  ; ...
  (display ")"))

But after I type the left parenthesis in first string, I can't type the right parenthesis in the last string:

```scheme
(define (print-point p)
  (newline)
  (display "(")
  ; ...
  (display "")) ; I can't type `)` in the string

Is this because of strict config?

jonspalding commented 8 years ago

Yeah this is a bug. I'll take a look.

mauricioszabo commented 7 years ago

Any news on this? It's kinda old, and it's kinda painful...

neil-lindquist commented 4 years ago

I've just push the fix to this to the master branch and will include it in the next release.