Variable: bookmark-edit-annotation-mode-map

bookmark-edit-annotation-mode-map is a variable defined in bookmark.el.gz.

Value

C-M-i    ispell-complete-word
C-c C-c  bookmark-send-edited-annotation

Documentation

Keymap for editing an annotation of a bookmark.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defvar bookmark-edit-annotation-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map text-mode-map)
    (define-key map "\C-c\C-c" 'bookmark-send-edited-annotation)
    map)
  "Keymap for editing an annotation of a bookmark.")