Variable: x-dnd-known-types
x-dnd-known-types is a customizable variable defined in x-dnd.el.gz.
Value
("text/uri-list" "text/x-moz-url" "_NETSCAPE_URL" "FILE_NAME" "UTF8_STRING" "text/plain;charset=UTF-8" "text/plain;charset=utf-8" "text/unicode" "text/plain" "COMPOUND_TEXT" "STRING" "TEXT")
Documentation
The types accepted by default for dropped data.
The types are chosen in the order they appear in the list.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/x-dnd.el.gz
(defcustom x-dnd-known-types
(mapcar 'purecopy
'("text/uri-list"
"text/x-moz-url"
"_NETSCAPE_URL"
"FILE_NAME"
"UTF8_STRING"
"text/plain;charset=UTF-8"
"text/plain;charset=utf-8"
"text/unicode"
"text/plain"
"COMPOUND_TEXT"
"STRING"
"TEXT"
))
"The types accepted by default for dropped data.
The types are chosen in the order they appear in the list."
:version "22.1"
:type '(repeat string)
:group 'x
)