marginalia
- Description
- Enrich existing commands with completion annotations
- Latest
- marginalia-1.7.tar (.sig), 2024-Jul-27, 110 KiB
- Maintainer
- Omar AntolĂn Camarena <omar@matem.unam.mx>, Daniel Mendler <mail@daniel-mendler.de>
- Website
- https://github.com/minad/marginalia
- Browse ELPA's repository
- CGit or Gitweb
- Badge
- Manual
- marginalia
To install this package from Emacs, use package-install
or list-packages
.
Full description
This package provides marginalia-mode
which adds marginalia to the minibuffer
completions. Marginalia are marks or annotations placed at the margin of the
page of a book or in this case helpful colorful annotations placed at the margin
of the minibuffer for your completion candidates. Marginalia can only add
annotations to the completion candidates. It cannot modify the appearance of the
candidates themselves, which are shown unaltered as supplied by the original
command.
The annotations are added based on the completion category. For example
find-file
reports the file
category and M-x
reports the command
category. You
can cycle between more or less detailed annotators or even disable the annotator
with command marginalia-cycle
.
Table of Contents
1. Configuration
It is recommended to use Marginalia together with either the Vertico, Mct, Icomplete or the default completion UI. Furthermore Marginalia can be combined with Embark for action support and Consult, which provides many useful commands.
;; Enable rich annotations using the Marginalia package (use-package marginalia ;; Bind `marginalia-cycle' locally in the minibuffer. To make the binding ;; available in the *Completions* buffer, add it to the ;; `completion-list-mode-map'. :bind (:map minibuffer-local-map ("M-A" . marginalia-cycle)) ;; The :init section is always executed. :init ;; Marginalia must be activated in the :init section of use-package such that ;; the mode gets enabled right away. Note that this forces loading the ;; package. (marginalia-mode))
2. Information shown by the annotators
In general, to learn more about what different annotations mean, a good starting
point is to look at marginalia-annotator-registry
, and follow up to the
annotation function of the category you are interested in.
For example the annotations for Elisp symbols include their symbol class - v
for
variable, f
for function, c
for command, etc. For more information on what the
different classifications mean, see the docstring of marginalia--symbol-class
.
3. Adding custom annotators or classifiers
IMPORTANT NOTICE FOR PACKAGE AUTHORS: The intention of the Marginalia package is
to give the user means to overwrite completion categories and to add custom
annotators for existing commands in their user configuration. Marginalia is a
user facing package and is not intended to be used as a library. Therefore
Marginalia does not expose library functions as part of its public API. If you
add your own completion commands to your package we recommend to specify an
annotation-function
or an affixation-function
, avoiding the Marginalia
dependency this way. The annotation-function
and affixation-function
are
documented in the Elisp manual. If you use consult--read
, you can specify an
:annotate
keyword argument.
There is an exception to our recommendation: If you want to implement
annotations for an existing package hypothetic.el
, which does not have
annotations and where annotations cannot be added, then the creation of a
marginalia-hypothetic.el
package is a good idea, since Marginalia provides the
facilities to enhance existing commands from the outside.
Commands that support minibuffer completion use a completion table of all the
available candidates. Candidates are associated with a category such as command
,
file
, face
, or variable
depending on what the candidates are. Based on the
category of the candidates, Marginalia selects an annotator to generate
annotations for display for each candidate.
Unfortunately, not all commands (including Emacs' builtin ones) specify the
category of their candidates. To compensate for this shortcoming, Marginalia
hooks into the Emacs completion framework and runs the classifiers listed in the
variable marginalia-classifiers
, which use the command's prompt or other
properties of the candidates to specify the completion category.
For example, the marginalia-classify-by-prompt
classifier checks the minibuffer
prompt against regexps listed in the marginalia-prompt-categories
alist to
determine a category. The following is already included but would be a way to
assign the category face
to all candidates from commands with prompts that
include the word "face".
(add-to-list 'marginalia-prompt-categories '("\\<face\\>" . face))
The marginalia-classify-by-command-name
classifier uses the alist
marginalia-command-categories
to specify the completion category based on the
command name. This is particularly useful if the prompt classifier yields a
false positive.
Completion categories are also important for Embark, which associates actions based on the completion category and benefits from Marginalia's classifiers.
Once the category of the candidates is known, Marginalia looks in the
marginalia-annotator-registry
to find the associated annotator to use. An
annotator is a function that takes a completion candidate string as an argument
and returns an annotation string to be displayed after the candidate in the
minibuffer. More than one annotator can be assigned to each each category,
displaying more, less or different information. Use the marginalia-cycle
command
to cycle between the annotations of different annotators defined for the current
category.
Here's an example of a basic face annotator:
(defun my-face-annotator (cand) (when-let (sym (intern-soft cand)) (concat (propertize " " 'display '(space :align-to center)) (propertize "The quick brown fox jumps over the lazy dog" 'face sym))))
After defining a new annotator, associate it with a category in the annotator registry as follows:
(add-to-list 'marginalia-annotator-registry '(face my-face-annotator marginalia-annotate-face builtin none))
This makes the my-face-annotator
the first of four annotators for the face
category. The others are the annotator provided by Marginalia
(marginalia-annotate-face
), the builtin
annotator as defined by Emacs and the
none
annotator, which disables the annotations. With this setting, after
invoking M-x describe-face RET
you can cycle between all of these annotators
using marginalia-cycle
.
4. Disabling annotators, builtin or lightweight annotators
Marginalia activates rich annotators by default. Depending on your preference
you may want to use the builtin annotators or even no annotators by default and
only activate the annotators on demand by invoking marginalia-cycle
.
In order to disable an annotator permanently, the marginalia-annotator-registry
can be modified. For example if you prefer to never see file annotations, you
can delete all file annotators from the registry.
(setq marginalia-annotator-registry (assq-delete-all 'file marginalia-annotator-registry))
To use the builtin annotators by default, you can run the following code.
Replace builtin
by none
to disable annotators by default.
(mapc (lambda (x) (setcdr x (cons 'builtin (remq 'builtin (cdr x))))) marginalia-annotator-registry)
As an alternative to marginalia-cycle
, if a completion category supports two
annotators, you can toggle between them using the following command.
(defun marginalia-toggle () (interactive) (mapc (lambda (x) (setcdr x (append (reverse (remq 'none (remq 'builtin (cdr x)))) '(builtin none)))) marginalia-annotator-registry))
After cycling the annotators you may want to automatically save the
configuration. This can be achieved using an advice which calls
customize-save-variable
.
(advice-add #'marginalia-cycle :after (lambda () (let ((inhibit-message t)) (customize-save-variable 'marginalia-annotator-registry marginalia-annotator-registry))))
5. Icons in the minibuffer
Marginalia focuses on text annotations. The following packages are compatible with Marginalia and use special fonts to add icons in front of completion candidates. There also exist related packages to enhance Dired, Ibuffer, Corfu and other modes with icons consistently.
- nerd-icons-completion: Uses the NerdFonts. It can even work even in the terminal where only a single font can be used.
- all-the-icons-completion: Uses the
all-the-icons.el
package which configures multiple icon fonts.
6. Contributions
Since this package is part of GNU ELPA contributions require a copyright assignment to the FSF.
Old versions
marginalia-1.6.tar.lz | 2024-Apr-04 | 20.6 KiB |
marginalia-1.5.tar.lz | 2024-Mar-31 | 20.4 KiB |
marginalia-1.4.tar.lz | 2023-Dec-01 | 20.4 KiB |
marginalia-1.3.tar.lz | 2023-Jul-02 | 20.0 KiB |
marginalia-1.2.tar.lz | 2023-Apr-17 | 19.3 KiB |
marginalia-1.1.tar.lz | 2023-Feb-17 | 19.1 KiB |
marginalia-1.0.tar.lz | 2022-Dec-22 | 18.4 KiB |
marginalia-0.15.tar.lz | 2022-Oct-16 | 28.6 KiB |
marginalia-0.14.tar.lz | 2022-Sep-09 | 28.6 KiB |
marginalia-0.13.tar.lz | 2022-Mar-08 | 27.4 KiB |
marginalia-0.12.tar.lz | 2022-Jan-31 | 27.2 KiB |
marginalia-0.11.tar.lz | 2021-Dec-31 | 133 KiB |
marginalia-0.10.tar.lz | 2021-Nov-14 | 133 KiB |
marginalia-0.9.tar.lz | 2021-Oct-11 | 133 KiB |
marginalia-0.8.tar.lz | 2021-Aug-11 | 132 KiB |
marginalia-0.7.tar.lz | 2021-Jun-20 | 130 KiB |
marginalia-0.6.tar.lz | 2021-May-30 | 128 KiB |
News
1. Version 1.7 (2024-07-26)
- Bump Compat dependency to Compat 30.
- Advise both
completion-metadata-get
and(compat-function completion-metadata-get)
in order to provide completion categories and annotation functions.
2. Version 1.6 (2024-04-04)
marginalia-annotate-buffer
: Handle dead buffers, which can occur when annotating the candidates ofconsult-buffer
, which maintains the actual buffer objects during completion.
3. Version 1.5 (2023-12-27)
marginalia-annotate-bookmark
: Show location and more context.marginalia-annotate-tab
: Show tab index starting from one.
4. Version 1.4 (2023-12-01)
marginalia-annotate-theme
: New annotator based onmarginalia-annotate-library
.marginalia-remote-file-regexps
: New customization variable set to a list of regexps matching remote paths, which should be excluded from file annotations.
5. Version 1.3 (2023-07-02)
marginalia-classify-by-prompt
: Use case-insensitive matching.marginalia-annotate-symbol
: Additional symbol classes. UseM
for module functions,P
for primitives andS
for special forms.marginalia-annotate-symbol
: Addsymbol-file
column.marginalia-cycle
: Addcompletion-predicate
to display command only in recursive minibuffers.
6. Version 1.2 (2023-04-17)
marginalia-classify-by-command-name
: Resolve function aliases and use the name of the original command to determine the completion category.
7. Version 1.1 (2023-02-17)
- Require the
compat
library. - Fix
marginalia-classify-by-prompt
such that it handles multiple brackets in the prompt gracefully. - Add
help-echo
properties to truncated annotations. The full string is shown on mouse hover. - Add
help-echo
to the symbol classes ofmarginalia-annotate-symbol
. - Add
help-echo
to file sizes showing the exact size in bytes. - Add
help-echo
to file dates showing the exact date.
8. Version 1.0 (2022-12-22)
- Start of changelog.