Variable: hs-minor-mode-map
hs-minor-mode-map is a variable defined in hideshow.el.gz.
Value
<left-fringe> <mouse-1> hs-indicator-mouse-toggle-hiding
C-c @ <backtab> hs-toggle-all
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
C-c @ TAB hs-cycle
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."
"S-<mouse-2>" #'hs-toggle-hiding
"C-c @" hs-prefix-map
"TAB" `(menu-item
"" hs-toggle-hiding
:filter
,(lambda (cmd)
(when (and hs-cycle-filter
;; On the headline with hideable blocks
(save-excursion
(forward-line 0)
(hs-get-first-block-on-line))
(or (not (functionp hs-cycle-filter))
(funcall hs-cycle-filter)))
cmd)))
"<left-fringe> <mouse-1>" #'hs-indicator-mouse-toggle-hiding)