Variable: org-list-use-circular-motion

org-list-use-circular-motion is a customizable variable defined in org-list.el.gz.

Value

nil

Documentation

Non-nil means commands implying motion in lists should be cyclic.

In that case, the item following the last item is the first one, and the item preceding the first item is the last one.

This affects the behavior of
  M-x org-move-item-up (org-move-item-up),
  M-x org-move-item-down (org-move-item-down),
  M-x org-next-item (org-next-item),
  M-x org-previous-item (org-previous-item).

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defcustom org-list-use-circular-motion nil
  "Non-nil means commands implying motion in lists should be cyclic.
\\<org-mode-map>
In that case, the item following the last item is the first one,
and the item preceding the first item is the last one.

This affects the behavior of
  `\\[org-move-item-up]',
  `\\[org-move-item-down]',
  `\\[org-next-item]',
  `\\[org-previous-item]'."
  :group 'org-plain-lists
  :version "24.1"
  :type 'boolean)