pear-tree icon indicating copy to clipboard operation
pear-tree copied to clipboard

unexpected <CR> expansion

Open namedots opened this issue 5 years ago • 0 comments

(defun f (x)
  ""|)

<CR> I get:

(defun f (x)
  ""
  |
  )

expected:

(defun f (x)
  ""
  |)

this doesn't expand that way:

foo(bar()|)

gives (as expected):

foo(bar()
|)

there's some fishy interaction with the quotes

namedots avatar Oct 17 '20 11:10 namedots