From: Alexander Shukaev <haroogan@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: Deny keymap changes made by `evil-integration'
Date: Sat, 25 Jul 2015 13:58:45 +0200 [thread overview]
Message-ID: <CAKu-7WxaxU-oKFoSQDoWr3A+T3LTMn+4v0msqU4cpGscKgtB7w@mail.gmail.com> (raw)
In-Reply-To: <83lhe41msl.fsf@gnu.org>
>> `evil-integration' has quite some forms like
>>
>> (eval-after-load 'dired
>> '(progn
>> ;; use the standard Dired bindings as a base
>> (defvar dired-mode-map)
>> (evil-make-overriding-map dired-mode-map 'normal)
>> (evil-add-hjkl-bindings dired-mode-map 'normal
>> "J" 'dired-goto-file ; "j"
>> "K" 'dired-do-kill-lines ; "k"
>> "r" 'dired-do-redisplay ; "l"
>> ;; ":d", ":v", ":s", ":e"
>> ";" (lookup-key dired-mode-map ":"))))
>>
>> for various packages. I would like to learn how to either revert
>> these changes back to the default state (i.e. `dired-mode-map' should
>> be crystal clean as it was before loading `evil') or, even better,
>> prevent `evil-integration' from doing such changes. For instance,
>> I've tried
>>
>> (let ((dired-mode-map))
>> (require 'evil)
>> ...
>> )
>>
>> and it didn't work. Any ideas?
>
> Would reloading Dired be OK?
>
That's an idea, Eli, but does that mean that I have to spam something like
(with-eval-after-load 'evil
(with-evail-after-load 'dired
(unload-feature 'dired)
(require 'dired))
(with-evail-after-load 'whatever
(unload-feature 'whatever)
(require 'whatever))
...)
for every package that is modified by `evil-integration'?
next prev parent reply other threads:[~2015-07-25 11:58 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-25 11:43 Deny keymap changes made by `evil-integration' Alexander Shukaev
2015-07-25 11:47 ` Eli Zaretskii
2015-07-25 11:58 ` Alexander Shukaev [this message]
2015-07-25 12:33 ` Eli Zaretskii
2015-07-25 12:52 ` Alexander Shukaev
2015-07-25 13:20 ` Eli Zaretskii
2015-07-25 13:23 ` Alexander Shukaev
2015-07-27 21:09 ` John Mastro
2015-07-28 13:28 ` Alexander Shukaev
2015-07-26 12:24 ` Martin Yrjölä
2015-07-26 18:56 ` Alexander Shukaev
2015-07-27 20:46 ` Robert Thorpe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAKu-7WxaxU-oKFoSQDoWr3A+T3LTMn+4v0msqU4cpGscKgtB7w@mail.gmail.com \
--to=haroogan@gmail.com \
--cc=eliz@gnu.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.