Variable: org-mouse-features
org-mouse-features is a customizable variable defined in
org-mouse.el.gz.
Value
(context-menu yank-link activate-stars activate-bullets
activate-checkboxes)
Documentation
The features of org-mouse that should be activated.
Changing this variable requires a restart of Emacs to get activated.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defcustom org-mouse-features
'(context-menu yank-link activate-stars activate-bullets activate-checkboxes)
"The features of org-mouse that should be activated.
Changing this variable requires a restart of Emacs to get activated."
:type '(set :greedy t
(const :tag "Mouse-3 shows context menu" context-menu)
(const :tag "C-mouse-1 and mouse-3 move trees" move-tree)
(const :tag "S-mouse-2 and drag-mouse-3 yank link" yank-link)
(const :tag "Activate headline stars" activate-stars)
(const :tag "Activate item bullets" activate-bullets)
(const :tag "Activate checkboxes" activate-checkboxes)))