Variable: decipher-mode-map

decipher-mode-map is a variable defined in decipher.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
A       decipher-show-alphabet
C       decipher-complete-alphabet
C-x u   decipher-undo
D       decipher-digram-list
F       decipher-frequency-count
M       decipher-make-checkpoint
N       decipher-adjacency-list
R       decipher-restore-checkpoint
SPC     decipher-keypress
SPC..~  undefined
U       decipher-undo
a       decipher-keypress
b       decipher-keypress
c       decipher-keypress
d       decipher-keypress
e       decipher-keypress
f       decipher-keypress
g       decipher-keypress
h       decipher-keypress
i       decipher-keypress
j       decipher-keypress
k       decipher-keypress
l       decipher-keypress
m       decipher-keypress
n       decipher-keypress
o       decipher-keypress
p       decipher-keypress
q       decipher-keypress
r       decipher-keypress
s       decipher-keypress
t       decipher-keypress
u       decipher-keypress
v       decipher-keypress
w       decipher-keypress
x       decipher-keypress
y       decipher-keypress
z       decipher-keypress

Documentation

Keymap for Decipher mode.

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
(defvar-keymap decipher-mode-map
  :doc "Keymap for Decipher mode."
  :suppress t
  "A"   #'decipher-show-alphabet
  "C"   #'decipher-complete-alphabet
  "D"   #'decipher-digram-list
  "F"   #'decipher-frequency-count
  "M"   #'decipher-make-checkpoint
  "N"   #'decipher-adjacency-list
  "R"   #'decipher-restore-checkpoint
  "U"   #'decipher-undo
  "SPC" #'decipher-keypress
  "<remap> <undo>" #'decipher-undo)