abo-abo / lispy

Short and sweet LISP editing
http://oremacs.com/lispy/
1.21k stars 133 forks source link

EOL comment makes ";" comment one more s-exp #657

Open RuijieYu opened 1 year ago

RuijieYu commented 1 year ago

lispy: fe44efd

'(1
| 2  ; 4
  3)

Press ; comments the two s-exps 2 and 3, whereas lispy should only comment 2. Observed outcome:

'(1
  ;; 2  ; 4
  ;; 3
 )