-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Hey, first of all thanks for this package, I think it's great.
I noticed a slightly annoying behavior for evil-cp-forward-sexp
and evil-cp-backward-sexp
(L and H). Consider this elisp file (|
denotes the cursor):
'(|("aaa" . bbb)
("ccc" . ddd))
If evil-move-beyond-eol
is t
, then pressing L once moves the cursor after "bbb)":
'(("aaa" . bbb)|
("ccc" . ddd))
From here, I can press either L or H. If I press L:
'(("aaa" . bbb)
("ccc" . ddd)|)
Or if I press H:
'(|("aaa" . bbb)
("ccc" . ddd))
Which is exactly what I expect to happen, so I consider it a good behavior.
On the other hand, if evil-move-beyond-eol
is nil
, the behavior is a bit off. Starting from the same place as before:
'(|("aaa" . bbb)
("ccc" . ddd))
Pressing L once moves the cursor after "bbb" but before the ")". Because evil-move-beyond-eol
is nil
, this is the expected behavior (so far so good).
'(("aaa" . bbb|)
("ccc" . ddd))
From here, however, pressing either L or H doesn't bring me to where I want. If I press L, the cursor doesn't move at all.
If I press H, the cursor moves in front of "bbb" instead of returning to where it was:
'(("aaa" . |bbb)
("ccc" . ddd))
The two problems here are that in this case H doesn't do the reverse of L, and that I can't move forward in the list because of how evil-mode adjusts the cursor.
Will it be possible to modify evil-cp-forward-sexp
and evil-cp-backward-sexp
for the case where the cursor is on a closing paren and evil-move-beyond-eol
is nil
? If not,