We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is caused because the current implementation of avy-goto-end-of-line just calls avy-goto-line so avy-with receives avy-goto-line as command.
avy-goto-end-of-line
avy-goto-line
avy-with
I just wanted to add this entry to the alist which seems to make sense for me (avy-goto-end-of-line . post) but it doesn't work.
(avy-goto-end-of-line . post)
This probably may be solved passing this-command to avy-with in avy-goto-line.
this-command
The text was updated successfully, but these errors were encountered:
Same issue with avy-goto-char-in-line. Passing avy-goto-char-in-line to avy-with instead of avy-goto-char seems to fix the issue.
avy-goto-char-in-line
avy-goto-char
Sorry, something went wrong.
No branches or pull requests
This is caused because the current implementation of
avy-goto-end-of-line
just callsavy-goto-line
soavy-with
receivesavy-goto-line
as command.I just wanted to add this entry to the alist which seems to make sense for me
(avy-goto-end-of-line . post)
but it doesn't work.This probably may be solved passing
this-command
toavy-with
inavy-goto-line
.The text was updated successfully, but these errors were encountered: