VL
Size: a a a
VL
VL
VL
A
A
VL
A
VL
A
VL
VL
VL
VL
PG
(defcustom test-mode-prefix (kbd "C-c C-c")
"DOC."
:group 'emacs
:type '(choice (string :tag "kbd")
(function :tag "remap")
(repeat :tag "vector" sexp)))
(defun prefix-kbd (obj)
(cond ((stringp obj)
(kbd obj))
((functionp obj)
`[remap ,obj])
((listp obj)
`[,@obj])))
AT
PG
𝘎(
A