Variable: hs-prefix-map

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

Value

<backtab>  hs-toggle-all
C-M-h      hs-hide-all
C-M-s      hs-show-all
C-a        hs-show-all
C-c        hs-toggle-hiding
C-d        hs-hide-block
C-e        hs-toggle-hiding
C-h        hs-hide-block
C-l        hs-hide-level
C-s        hs-show-block
C-t        hs-hide-all
TAB        hs-cycle

Documentation

Keymap for hideshow commands.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
;;;; Keymaps

(defvar-keymap hs-prefix-map
  :doc "Keymap for hideshow commands."
  :prefix t
  ;; These bindings roughly imitate those used by Outline mode.
  "C-h"       #'hs-hide-block
  "C-d"       #'hs-hide-block
  "C-s"       #'hs-show-block
  "C-M-h"     #'hs-hide-all
  "C-t"       #'hs-hide-all
  "C-M-s"     #'hs-show-all
  "C-a"       #'hs-show-all
  "C-l"       #'hs-hide-level
  "C-c"       #'hs-toggle-hiding
  "C-e"       #'hs-toggle-hiding
  "TAB"       #'hs-cycle
  "<backtab>" #'hs-toggle-all)