Variable: dnd-indicate-insertion-point
dnd-indicate-insertion-point is a customizable variable defined in
dnd.el.gz.
Value
nil
Documentation
Whether or not point should follow the position of the mouse.
If non-nil, the point of the window underneath the mouse will be adjusted to reflect where any text will be inserted upon drop when the mouse moves while receiving a drop from another program.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/dnd.el.gz
(defcustom dnd-indicate-insertion-point nil
"Whether or not point should follow the position of the mouse.
If non-nil, the point of the window underneath the mouse will be
adjusted to reflect where any text will be inserted upon drop
when the mouse moves while receiving a drop from another
program."
:type 'boolean
:version "29.1"
:group 'dnd)