Variable: dictionary-mode-map
dictionary-mode-map is a variable defined in dictionary.el.gz.
Value
Large value
- negative-argument
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
<backtab> backward-button
<motion-state> : evil-ex
<motion-state> ? dictionary-help
<motion-state> C - o dictionary-previous
<motion-state> h evil-backward-char
<motion-state> j evil-next-line
<motion-state> k evil-previous-line
<motion-state> l evil-forward-char
C-M-i backward-button
D dictionary-select-dictionary
M dictionary-select-strategy
M-SPC scroll-down-command
S-SPC scroll-down-command
SPC scroll-up-command
SPC..~ undefined
TAB forward-button
d dictionary-lookup-definition
h dictionary-help
l dictionary-previous
m dictionary-match-words
n forward-button
p backward-button
q dictionary-close
s dictionary-search
Documentation
Keymap for the dictionary mode.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Global variables
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar dictionary-mode-map
(let ((map (make-sparse-keymap)))
(suppress-keymap map)
(set-keymap-parent map button-buffer-map)
(define-key map "q" #'dictionary-close)
(define-key map "h" #'dictionary-help)
(define-key map "s" #'dictionary-search)
(define-key map "d" #'dictionary-lookup-definition)
(define-key map "D" #'dictionary-select-dictionary)
(define-key map "M" #'dictionary-select-strategy)
(define-key map "m" #'dictionary-match-words)
(define-key map "l" #'dictionary-previous)
(define-key map "n" #'forward-button)
(define-key map "p" #'backward-button)
(define-key map " " #'scroll-up-command)
(define-key map [?\S-\ ] #'scroll-down-command)
(define-key map (read-kbd-macro "M-SPC") #'scroll-down-command)
map)
"Keymap for the dictionary mode.")