I like to use vimpulse or viper-mode in Emacs. Unfortunately, wdired doesn't support viper-mode because when you type e, the wdired-change-to-wdired-mode doesn't activate the vi-state. I found a way to activate and deactivate vi-state when toggling the wdired-mode.
(eval-after-load "wdired"
'(progn
(eval-after-load "viper"
'(progn
(defadvice wdired-change-to-wdired-mode (after viper activate)
(unless (eq viper-current-state 'emacs-state)
(viper-change-state 'vi-state)))
(defadvice wdired-finish-edit (after viper activate)
(unless (eq viper-current-state 'emacs-state)
(viper-change-state-to-vi)) ; back to normal state
(viper-modify-major-mode ; back to dired map
'dired-mode 'vi-state dired-mode-map))))))
It may need improvements (welcomed) but this can save you. The second wrapper for wdired-finish-edit function must reactivate dired-mode-map especially if you use additional bindings like those of dired+ package.
(eval-after-load "wdired" ...)since you can safelydefadvicea function before it's defined. BTW, was there a question? – Stefan Jan 22 at 20:08