-
Notifications
You must be signed in to change notification settings - Fork 10
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
Repeatable key sequence not working #30
Comments
I checked with an empty configuration directory and followed the same instructions which you linked, and it worked for me, so I imagine the problem is configuration specific. If you wanted to try the same test, just specify an empty directory as the init directory to use: mkdir D:\tempconfig && emacs -Q --init-directory=D:\tempconfig The most likely cause of the problem is that you had already installed the package from NonGNU ELPA, which is an older version where the repeat functionality is not automatically configured. It isn't straight forward to tell the two versions apart because the value of (find-library "devil") The NonGNU ELPA version currently looks like this:
The MELPA version currently looks like this:
Assuming that MELPA has been added as a package source in the same way as the instructions describe, if you do have the older version and want to switch to the MELPA version, I think this would do it: (global-devil-mode -1)
(unload-feature 'devil)
(package-delete (car (alist-get 'devil package-alist)))
(package-refresh-contents)
(package-install 'devil)
(require 'devil)
(global-devil-mode 1) |
Morgan,
I'm now moving on to adding additional keys to the repeatable sequence. I read the manual and it seems to be missing an example of such an operation - any chance this could be added ? Also, the benefit of making all keys repeatable isn't immediately obvious from the documentation - could this also be added ? Thank you , |
Hi Max, No need to apologise, and hopefully you can track down the problem with your config file.
I've not tried these options myself, and if the descriptions in the manual are incomplete or could use more detail then it would probably be best to open a new issue for that. One thing to note though is that the version of the manual that is at https://susam.github.io/devil/ isn't necessarily the latest version - you might want to check the Org version of the manual that is in the repository to see if that provides any further details. Morgan |
Hello,
Thank you for the wonderful package that you have written - it has proved to be very useful to me.
I have been trying to use the repeatable key functionality but it doesn't seem to be working.
Please advise how I can get this feature working....thanks for the assistance...
Max
The text was updated successfully, but these errors were encountered: