summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2014-07-17 18:54:36 -0400
committerTorsten Hilbrich <torsten.hilbrich@gmx.net>2014-07-18 05:29:33 +0200
commita23b8f4a422d0de69a006ed010eff5795319db98 (patch)
tree52550688c7d4af8099c42a04bbfe3e918590a834
parent14c0acfb12fc8e5d727ba4cacd8b1699c680dca2 (diff)
add binds for M-tab and backtab
-rw-r--r--dictionary.el2
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)