-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Should not (evil-set-jump previous-pos) jump after evil-jump-forward #1772
Conversation
@roxma thanks for the PR. As mentioned in the comment, I don't think you need to revert the renaming. |
Has there been any progress? I also have this problem. Whenever I jump back repeatedly, I can only jump forwards once. |
…ward Steps to reproduce the issue: - Create files `a` `b` `c` with the following content: $ head a b c ==> a <== b I'm A ==> b <== c I'm B ==> c <== I'm C - Run `emancs a` to open bufer `a` - Press `gf` to jump to bufer `b` - Press `gf` to jump to bufer `c` - Press `C-o` to jump back to bufer `b` - Press `C-o` to jump back to bufer `a` - Press `C-i` to jump foward to bufer `b` - Press `C-i` to jump foward to bufer `c`, but the window stays with buffer unexpectedly.
557d115
to
d5d5152
Compare
d5d5152
to
e3530b9
Compare
@dschrempf apologies for the delay. Now fixed in master. Please let me know if you observe otherwise. |
Wow, that was fast, thanks a lot! |
@tomdl89 Thank you for adding the tests. |
I can also confirm that this is working! Thanks! |
Steps to reproduce the issue:
a
b
c
with the following content:emancs a
to open bufera
gf
to jump to buferb
gf
to jump to buferc
C-o
to jump back to buferb
C-o
to jump back to bufera
C-i
to jump foward to buferb
C-i
to jump foward to buferc
, but the window stays on bufferb
unexpectedly.