Variable: hs-minor-mode-map

hs-minor-mode-map is a variable defined in hideshow.el.gz.

Value

C-c @ C-M-h  hs-hide-all
C-c @ C-M-s  hs-show-all
C-c @ C-a    hs-show-all
C-c @ C-c    hs-toggle-hiding
C-c @ C-d    hs-hide-block
C-c @ C-e    hs-toggle-hiding
C-c @ C-h    hs-hide-block
C-c @ C-l    hs-hide-level
C-c @ C-s    hs-show-block
C-c @ C-t    hs-hide-all
S-<mouse-2>  hs-toggle-hiding

Documentation

Keymap for hideshow minor mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defvar-keymap hs-minor-mode-map
  :doc "Keymap for hideshow minor mode."
  ;; These bindings roughly imitate those used by Outline mode.
  "C-c @ C-h"   #'hs-hide-block
  "C-c @ C-s"   #'hs-show-block
  "C-c @ C-M-h" #'hs-hide-all
  "C-c @ C-M-s" #'hs-show-all
  "C-c @ C-l"   #'hs-hide-level
  "C-c @ C-c"   #'hs-toggle-hiding
  "C-c @ C-a"   #'hs-show-all
  "C-c @ C-t"   #'hs-hide-all
  "C-c @ C-d"   #'hs-hide-block
  "C-c @ C-e"   #'hs-toggle-hiding
  "S-<mouse-2>" #'hs-toggle-hiding)