Yanking
Yanking means inserting text from the kill ring, but it does not insert the text blindly. The yank command, and related commands, use insert-for-yank to perform special processing on the text before it is inserted.
- Function: insert-for-yank string
This function works like
insert, except that it processes the text in string according to theyank-handlertext property, as well as the variablesyank-handled-propertiesandyank-excluded-properties(see below), before inserting the result into the current buffer.
- Function: insert-buffer-substring-as-yank buf &optional start end
This function resembles
insert-buffer-substring, except that it processes the text according toyank-handled-propertiesandyank-excluded-properties. (It does not handle theyank-handlerproperty, which does not normally occur in buffer text anyway.)
If you put a yank-handler text property on all or part of a string, that alters how insert-for-yank inserts the string. If different parts of the string have different yank-handler values (comparison being done with eq), each substring is handled separately. The property value must be a list of one to four elements, with the following format (where elements after the first may be omitted):
(function param noexclude undo)
Here is what the elements do:
- function
-
When function is non-
nil, it is called instead ofinsertto insert the string, with one argument—the string to insert. - param
-
If param is present and non-
nil, it replaces string (or the substring of string being processed) as the object passed to function (orinsert). For example, if function isyank-rectangle, param should be a list of strings to insert as a rectangle. - noexclude
-
If noexclude is present and non-
nil, that disables the normal action ofyank-handled-propertiesandyank-excluded-propertieson the inserted string. - undo
If undo is present and non-
nil, it is a function that will be called byyank-popto undo the insertion of the current object. It is called with two arguments, the start and end of the current region. function can setyank-undo-functionto override the undo value.
- User Option: yank-handled-properties
-
This variable specifies special text property handling conditions for yanked text. It takes effect after the text has been inserted (either normally, or via the
yank-handlerproperty), and prior toyank-excluded-propertiestaking effect.The value should be an alist of elements
(prop . fun). Each alist element is handled in order. The inserted text is scanned for stretches of text having text propertieseqto prop; for each such stretch, fun is called with three arguments: the value of the property, and the start and end positions of the text.
- User Option: yank-excluded-properties
The value of this variable is the list of properties to remove from inserted text. Its default value contains properties that might lead to annoying results, such as causing the text to respond to the mouse or specifying key bindings. It takes effect after
yank-handled-properties.
Copyright © 1990-1996, 1998-2021 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
https://www.gnu.org/software/emacs/manual/html_node/elisp/Yanking.html