anyone notice this in doom?
i just tested this with spc c s
("send region to repl" in doom's eval module) and g r {vim motion or visual selection}
(also from doom's eval module, but defined as evil mode operator).
when an IELM repl is open, the region sent to it by either of these commands is all fucked up. and apparently it has something to do with needing spaces at end of lines.
(spc o r
i.e. +eval:repl
also has a feature where it will send a selected region to an open repl if available, and this actually works fine. but that's because it's finding the region differently and calls completely different functions from those other two commands)
i know theres something with how emacs' built in eval-region needs the cursor after the last sexp and evil mode wants a block selection, that doesnt bother me i know that difference exists, but this isnt that.
heres the doom guy talking about adding this feature
https://github.com/doomemacs/doomemacs/issues/1941#issuecomment-546120052
which is a cool feature and i thought ("wow somebody must have taken the care and time to add this where eval:region sends to IELM if open, very cool") before i realized it was broken for me