From 5d388ddb451ba0ff0f820052f2b5fe62aeee7177 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Thu, 5 Jul 2018 14:25:09 +0900 Subject: [PATCH] Add ilookup keybind --- emacs.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.el b/emacs.el index 3642491..11bb7dd 100644 --- a/emacs.el +++ b/emacs.el @@ -766,6 +766,9 @@ found, otherwise returns nil." (when (safe-require-or-eval 'flycheck) (call-after-init 'global-flycheck-mode)) +(when (autoload-eval-lazily 'ilookup) + (define-key ctl-x-map "d" 'ilookup-open-word)) + (set-variable 'ac-ignore-case nil) (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))