Variable: org-list-checkbox-radio-mode

org-list-checkbox-radio-mode is a buffer-local variable defined in org-list.el.gz.

Documentation

Non-nil if Org-List-Checkbox-Radio mode is enabled.

Use the command org-list-checkbox-radio-mode(var)/org-list-checkbox-radio-mode(fun) to change this variable.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
;;;###autoload
(define-minor-mode org-list-checkbox-radio-mode
  "When turned on, use list checkboxes as radio buttons."
  :lighter " CheckBoxRadio"
  (unless (eq major-mode 'org-mode)
    (user-error "Cannot turn this mode outside org-mode buffers")))