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
DEL                   scroll-down-command
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                     describe-mode
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-keymap dictionary-mode-map
  :doc "Keymap for the dictionary mode."
  :suppress t :parent button-buffer-map
  "q"     #'dictionary-close
  "h"     #'describe-mode
  "s"     #'dictionary-search
  "d"     #'dictionary-lookup-definition
  "D"     #'dictionary-select-dictionary
  "M"     #'dictionary-select-strategy
  "m"     #'dictionary-match-words
  "l"     #'dictionary-previous
  "n"     #'forward-button
  "p"     #'backward-button
  "SPC"   #'scroll-up-command
  "S-SPC" #'scroll-down-command
  "M-SPC" #'scroll-down-command
  "DEL"   #'scroll-down-command)