Variable: x-dnd-copy-types

x-dnd-copy-types is a customizable variable defined in x-dnd.el.gz.

Value

("chromium/x-renderer-taint")

Documentation

List of data types offered by programs that don't support private.

Some programs (such as Chromium) do not support XdndActionPrivate. The default x-dnd-test-function will always return copy instead, for programs offering one of the data types in this list.

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

Source Code

;; Defined in /usr/src/emacs/lisp/x-dnd.el.gz
(defcustom x-dnd-copy-types '("chromium/x-renderer-taint")
  "List of data types offered by programs that don't support `private'.
Some programs (such as Chromium) do not support
`XdndActionPrivate'.  The default `x-dnd-test-function' will
always return `copy' instead, for programs offering one of the
data types in this list."
  :version "29.1"
  :type '(repeat string)
  :group 'x)