Variable: mouse-drag-and-drop-region-show-cursor

mouse-drag-and-drop-region-show-cursor is a customizable variable defined in mouse.el.gz.

Value

t

Documentation

If non-nil, move point with mouse cursor during dragging.

If this is nil, mouse-drag-and-drop-region(var)/mouse-drag-and-drop-region(fun) leaves point alone. Otherwise, it will move point together with the mouse cursor and, in addition, temporarily highlight the original region with the mouse-drag-and-drop-region(var)/mouse-drag-and-drop-region(fun) face.

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

View in manual

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defcustom mouse-drag-and-drop-region-show-cursor t
  "If non-nil, move point with mouse cursor during dragging.
If this is nil, `mouse-drag-and-drop-region' leaves point alone.
Otherwise, it will move point together with the mouse cursor and,
in addition, temporarily highlight the original region with the
`mouse-drag-and-drop-region' face."
  :type 'boolean
  :version "26.1")