Variable: org-replace-disputed-keys

org-replace-disputed-keys is a customizable variable defined in org-keys.el.gz.

Value

nil

Documentation

Non-nil means use alternative key bindings for some keys.

Org mode uses S-<cursor> keys for changing timestamps and priorities. These keys are also used by other packages like Shift Select mode, CUA mode or Windmove. If you want to use Org mode together with one of these other modes, or more generally if you would like to move some Org mode commands to other keys, set this variable and configure the keys with the variable org-disputed-keys.

This option is only relevant at load-time of Org mode, and must be set
*before* org.el is loaded. Changing it requires a restart of Emacs to
become effective.

Aliases

org-CUA-compatible

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-keys.el.gz
(defcustom org-replace-disputed-keys nil
  "Non-nil means use alternative key bindings for some keys.

Org mode uses S-<cursor> keys for changing timestamps and priorities.
These keys are also used by other packages like Shift Select mode,
CUA mode or Windmove.  If you want to use Org mode together with
one of these other modes, or more generally if you would like to
move some Org mode commands to other keys, set this variable and
configure the keys with the variable `org-disputed-keys'.

This option is only relevant at load-time of Org mode, and must be set
*before* org.el is loaded.  Changing it requires a restart of Emacs to
become effective."
  :group 'org-startup
  :type 'boolean
  :safe #'booleanp)