Function: org-shiftselect-error

org-shiftselect-error is a byte-compiled function defined in org.el.gz.

Signature

(org-shiftselect-error)

Documentation

Throw an error because Shift-Cursor command was applied in wrong context.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-shiftselect-error ()
  "Throw an error because Shift-Cursor command was applied in wrong context."
  (if (and (boundp 'shift-select-mode) shift-select-mode)
      (user-error "To use shift-selection with Org mode, customize `org-support-shift-select'")
    (user-error "This command works only in special context like headlines or timestamps")))