You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am setting my emacs to text-mode for this because I heard there are some issues with other major modes sometimes.
when I have a simple thing like this:
(abc)
and I put point inside the parenthesis, say on b for example, then I press ds( it says "No surrounding delimiters found" in the minibuffer.
I noticed that when I have
abc
for example, put point on b and press ysiw( it inserts parenthesis like this:
( abc )
And with this, ds( works.
When I disable evil-embrace integration using M-x evil-embrace-disable-evil-surround-integration evil-surround works as expected and deletes the parenthesis around (abc) with ds(
The text was updated successfully, but these errors were encountered:
Well all Doom Emacs users that have the evil module activated. (Which is almost all to be fair)
I reported this bug at evil-surround as well and they send me here. emacs-evil/evil-surround#210 The issue is only present with evil-embrace activated indeed.
Hi,
I am setting my emacs to text-mode for this because I heard there are some issues with other major modes sometimes.
when I have a simple thing like this:
and I put point inside the parenthesis, say on b for example, then I press
ds(
it says "No surrounding delimiters found" in the minibuffer.I noticed that when I have
for example, put point on b and press
ysiw(
it inserts parenthesis like this:And with this,
ds(
works.When I disable evil-embrace integration using
M-x evil-embrace-disable-evil-surround-integration
evil-surround works as expected and deletes the parenthesis around(abc)
withds(
The text was updated successfully, but these errors were encountered: