diff options
-rw-r--r-- | dictionary.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dictionary.el b/dictionary.el index 0cc8887..fa23546 100644 --- a/dictionary.el +++ b/dictionary.el @@ -415,6 +415,8 @@ by the choice value: ;; shift-tabs normally is supported on window systems only, but ;; I do not enforce it (define-key dictionary-mode-map [(shift tab)] 'dictionary-prev-link) + (define-key dictionary-mode-map "\e\t" 'dictionary-prev-link) + (define-key dictionary-mode-map [backtab] 'dictionary-prev-link) (define-key dictionary-mode-map "n" 'dictionary-next-link) (define-key dictionary-mode-map "p" 'dictionary-prev-link) |