Variable: org-edit-keep-region

org-edit-keep-region is a customizable variable defined in org.el.gz.

Value

((org-metaleft . t) (org-metaright . t) (org-metaup . t)
 (org-metadown . t))

Documentation

Shall some Org editing commands keep region active?

This variable can be nil, t, or an a list of entries like
  (COMMAND-NAME . KEEP-REGION-P)

This variable was added, or its default value changed, in Org version
9.8.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-edit-keep-region
  '((org-metaleft . t)
    (org-metaright . t)
    (org-metaup . t)
    (org-metadown . t))
  "Shall some Org editing commands keep region active?

This variable can be nil, t, or an a list of entries like
  (COMMAND-NAME . KEEP-REGION-P)"
  :type '(choice
          (const :tag "Keep region for all commands" t)
          (const :tag "Never keep region" nil)
          (alist
           :key-type
           (choice (const org-metaleft)
                   (const org-metaright)
                   (const org-metaup)
                   (const org-metadown))
           :value-type
           (choice (const :tag "Keep region" t)
                   (const :tag "Deactivate region" nil))))
  :package-version '(Org . "9.8")
  :group 'org-edit-structure
  :safe #'always)