From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/menu-separators.html | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 devdocs/elisp/menu-separators.html (limited to 'devdocs/elisp/menu-separators.html') diff --git a/devdocs/elisp/menu-separators.html b/devdocs/elisp/menu-separators.html deleted file mode 100644 index fcf8a7c8..00000000 --- a/devdocs/elisp/menu-separators.html +++ /dev/null @@ -1,22 +0,0 @@ -

Menu Separators

A menu separator is a kind of menu item that doesn’t display any text—instead, it divides the menu into subparts with a horizontal line. A separator looks like this in the menu keymap:

(menu-item separator-type)
-
-

where separator-type is a string starting with two or more dashes.

In the simplest case, separator-type consists of only dashes. That specifies the default kind of separator. (For compatibility, "" and - also count as separators.)

Certain other values of separator-type specify a different style of separator. Here is a table of them:

"--no-line"
"--space"
-

An extra vertical space, with no actual line.

"--single-line"
-

A single line in the menu’s foreground color.

"--double-line"
-

A double line in the menu’s foreground color.

"--single-dashed-line"
-

A single dashed line in the menu’s foreground color.

"--double-dashed-line"
-

A double dashed line in the menu’s foreground color.

"--shadow-etched-in"
-

A single line with a 3D sunken appearance. This is the default, used separators consisting of dashes only.

"--shadow-etched-out"
-

A single line with a 3D raised appearance.

"--shadow-etched-in-dash"
-

A single dashed line with a 3D sunken appearance.

"--shadow-etched-out-dash"
-

A single dashed line with a 3D raised appearance.

"--shadow-double-etched-in"
-

Two lines with a 3D sunken appearance.

"--shadow-double-etched-out"
-

Two lines with a 3D raised appearance.

"--shadow-double-etched-in-dash"
-

Two dashed lines with a 3D sunken appearance.

"--shadow-double-etched-out-dash"

Two dashed lines with a 3D raised appearance.

You can also give these names in another style, adding a colon after the double-dash and replacing each single dash with capitalization of the following word. Thus, "--:singleLine", is equivalent to "--single-line".

You can use a longer form to specify keywords such as :enable and :visible for a menu separator:

(menu-item separator-type nil . item-property-list)

For example:

(menu-item "--" nil :visible (boundp 'foo))
-
-

Some systems and display toolkits don’t really handle all of these separator types. If you use a type that isn’t supported, the menu displays a similar kind of separator that is supported.

-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Menu-Separators.html -

-
-- cgit v1.2.3