Function: org-columns-move-left
org-columns-move-left is an interactive and byte-compiled function
defined in org-colview.el.gz.
Signature
(org-columns-move-left)
Documentation
Swap this column with the one to the left.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns-move-left ()
"Swap this column with the one to the left."
(interactive)
(let* ((n (org-current-text-column)))
(when (= n 0)
(error "Cannot shift this column further to the left"))
(backward-char 1)
(org-columns-move-right)
(backward-char 1)))