Created
February 3, 2015 18:56
-
-
Save AlexBaranosky/92970a625d9aaae45729 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun change-to-wfoo-mode () | |
(interactive) | |
(cond ((eq major-mode 'dired-mode) | |
(wdired-change-to-wdired-mode)) | |
((eq major-mode 'grep-mode) | |
(wgrep-change-to-wgrep-mode)) | |
(t | |
(message "Not in either dired-mode or grep-mode :(")))) | |
(key-chord-define-global "ww" 'change-to-wfoo-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment