abo-abo / lispy

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

lispy-delete before lispy-right doesn't work as documented in lispy-delete Case 9 in lispy.el function reference #569

Open bpstahlman opened 3 years ago

bpstahlman commented 3 years ago

According to the function reference: (foo (bar) (baz|)) -> C-d -> (foo (bar)|)

But what I actually observe is this: (foo (bar) (baz|)) -> C-d -> (foo (bar) |(baz))

Hitting C-d again produces... (foo (bar) |)

In other words, Case 9 seems to work like Case 3 (point before quote terminating a string).

Which is correct? The documentation or the implementation?