Overlay properties are like text properties in that the properties that alter how a character is displayed can come from either source. But in most respects they are different. See Text Properties, for comparison.
Text properties are considered a part of the text; overlays and their properties are specifically considered not to be part of the text. Thus, copying text between various buffers and strings preserves text properties, but does not try to preserve overlays. Changing a buffer's text properties marks the buffer as modified, while moving an overlay or changing its properties does not. Unlike text property changes, overlay property changes are not recorded in the buffer's undo list.
Since more than one overlay can specify a property value for the same character, Emacs lets you specify a priority value of each overlay. You should not make assumptions about which overlay will prevail when there is a conflict and they have the same priority.
These functions read and set the properties of an overlay:
This function returns the value of property prop recorded in overlay, if any. If overlay does not record any value for that property, but it does have a
categoryproperty which is a symbol, that symbol's prop property is used. Otherwise, the value isnil.
This function sets the value of property prop recorded in overlay to value. It returns value.
See also the function get-char-property which checks both
overlay properties and text properties for a given character.
See Examining Properties.
Many overlay properties have special meanings; here is a table of them:
prioritynil,
means zero.
The priority matters when two or more overlays cover the same
character and both specify the same property; the one whose
priority value is larger overrides the other. For the
face property, the higher priority overlay's value does not
completely override the other value; instead, its face attributes
override the face attributes of the lower priority face
property.
Currently, all overlays take priority over text properties. Please
avoid using negative priority values, as we have not yet decided just
what they should mean.
windowwindow property is non-nil, then the overlay
applies only on that window.
categorycategory property, we call it the
category of the overlay. It should be a symbol. The properties
of the symbol serve as defaults for the properties of the overlay.
faceIn the simplest case, the value is a face name. It can also be a list; then each element can be any of these possibilities:
(foreground-color . color-name) or
(background-color . color-name). These elements specify
just the foreground color or just the background color.
(foreground-color . color-name) has the same effect as
(:foreground color-name); likewise for the background.
mouse-faceface when the mouse is within
the range of the overlay.
displayhelp-echohelp-echo property, then when you move the
mouse onto the text in the overlay, Emacs displays a help string in the
echo area, or in the tooltip window. For details see Text help-echo.
modification-hooksThe hook functions are called both before and after each change. If the functions save the information they receive, and compare notes between calls, they can determine exactly what change has been made in the buffer text.
When called before a change, each function receives four arguments: the
overlay, nil, and the beginning and end of the text range to be
modified.
When called after a change, each function receives five arguments: the
overlay, t, the beginning and end of the text range just
modified, and the length of the pre-change text replaced by that range.
(For an insertion, the pre-change length is zero; for a deletion, that
length is the number of characters deleted, and the post-change
beginning and end are equal.)
If these functions modify the buffer, they should bind
inhibit-modification-hooks to t around doing so, to
avoid confusing the internal mechanism that calls these hooks.
Text properties also support the modification-hooks property,
but the details are somewhat different (see Special Properties).
insert-in-front-hooksmodification-hooks functions.
insert-behind-hooksmodification-hooks functions.
invisibleinvisible property can make the text in the overlay
invisible, which means that it does not appear on the screen.
See Invisible Text, for details.
intangibleintangible property on an overlay works just like the
intangible text property. See Special Properties, for details.
isearch-open-invisibleisearch-open-invisible-temporarybefore-stringafter-stringline-prefixwrap-prefixevaporatenil, the overlay is deleted automatically
if it becomes empty (i.e., if its length becomes zero). If you give
an empty overlay a non-nil evaporate property, that deletes
it immediately.
local-mapnil, it specifies a keymap for a portion
of the text. The property's value replaces the buffer's local map, when
the character after point is within the overlay. See Active Keymaps.
keymapkeymap property is similar to local-map but overrides the
buffer's local map (and the map specified by the local-map
property) rather than replacing it.
The local-map and keymap properties do not affect a
string displayed by the before-string, after-string, or
display properties. This is only relevant for mouse clicks and
other mouse events that fall on the string, since point is never on
the string. To bind special mouse events for the string, assign it a
local-map or keymap text property. See Special Properties.