Function: allout-open-supertopic

allout-open-supertopic is an interactive and byte-compiled function defined in allout.el.gz.

Signature

(allout-open-supertopic ARG)

Documentation

Open new topic header at shallower level than the current one.

Negative universal ARG means to open shallower, but place the new topic prior to the current one.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-open-supertopic (arg)
(defun allout-open-supertopic (arg)
  "Open new topic header at shallower level than the current one.

Negative universal ARG means to open shallower, but place the new
topic prior to the current one."

  (interactive "p")
  (allout-open-topic -1 (> 0 arg) (< 1 arg)))