Function: org-ctrl-c-tab
org-ctrl-c-tab is an interactive and byte-compiled function defined in
org.el.gz.
Signature
(org-ctrl-c-tab &optional ARG)
Documentation
Toggle columns width in a table, or show children.
Call org-table-toggle-column-width if point is in a table.
Otherwise provide a compact view of the children. ARG is the
level to hide.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-ctrl-c-tab (&optional arg)
"Toggle columns width in a table, or show children.
Call `org-table-toggle-column-width' if point is in a table.
Otherwise provide a compact view of the children. ARG is the
level to hide."
(interactive "p")
(cond
((org-at-table-p)
(call-interactively #'org-table-toggle-column-width))
((org-before-first-heading-p)
(save-excursion
(org-fold-flag-above-first-heading)
(org-fold-hide-sublevels (or arg 1))))
(t
(org-fold-hide-subtree)
(org-fold-show-children arg))))