-
-
Notifications
You must be signed in to change notification settings - Fork 113
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 `avy-goto-subword-0' leading chars ordering #27
Conversation
I don't like adding another argument to Also, do you have an Emacs copyright assignment? Only 15 lines are allowed without it. |
* avy-jump.el (avy-goto-subword-0): Collect candidates by the ordering of the window. Fixed #14.
Yes. I've signed Emacs copyright assignment. |
So the issue currently isn't with the current window, it's just with the order of the other windows? |
See if this |
Yes. The issue is with the order of the other window. |
|
OK, hopefully this is the last iteration. |
Thanks! 👍 |
reversed window list.
Fixed #14.
According to `window-list' documentation, the selected window
will appear on the first item in the list. So I revert e931071.
In `avy-goto-subword-0', the candidates had been collected in natural
order per window. If we traverse in reversed windows list, the leading
char will be in correct order across multiple windows.