Function: markdown-shifttab

markdown-shifttab is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-shifttab)

Documentation

Handle S-TAB keybinding based on context.

When in a table, move backward one cell. Otherwise, cycle global heading visibility by calling markdown-cycle with argument t.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-shifttab ()
  "Handle S-TAB keybinding based on context.
When in a table, move backward one cell.
Otherwise, cycle global heading visibility by calling
`markdown-cycle' with argument t."
  (interactive)
  (cond ((markdown-table-at-point-p)
         (call-interactively #'markdown-table-backward-cell))
        (t (markdown-cycle t))))