mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Update missing plugin configuration options and formatting details
This commit is contained in:
parent
2c1aa27385
commit
76c049938c
1 changed files with 12 additions and 7 deletions
|
|
@ -39,21 +39,26 @@ Configuration
|
||||||
To configure the plugin, make a ``missing:`` section in your configuration file.
|
To configure the plugin, make a ``missing:`` section in your configuration file.
|
||||||
The available options are:
|
The available options are:
|
||||||
|
|
||||||
- **count**: Print a count of missing tracks per album, with ``format``
|
- **count**: Print a count of missing tracks per album, with the global
|
||||||
defaulting to ``$albumartist - $album: $missing``. Default: ``no``.
|
``format_album`` used for formatting. Default: ``no``.
|
||||||
- **format**: A specific format with which to print every track. This uses the
|
|
||||||
same template syntax as beets' :doc:`path formats </reference/pathformat>`.
|
|
||||||
The usage is inspired by, and therefore similar to, the :ref:`list <list-cmd>`
|
|
||||||
command. Default: :ref:`format_item`.
|
|
||||||
- **total**: Print a single count of missing tracks in all albums. Default:
|
- **total**: Print a single count of missing tracks in all albums. Default:
|
||||||
``no``.
|
``no``.
|
||||||
|
|
||||||
|
Formatting
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- This plugin uses global formatting options from the main configuration; see :ref:`format_item` and :ref:`format_album`:
|
||||||
|
|
||||||
|
- :ref:`format_item`: Used when listing missing tracks (default item format).
|
||||||
|
- :ref:`format_album`: Used when showing counts (``-c``) or missing albums (``-a``).
|
||||||
|
|
||||||
Here's an example
|
Here's an example
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
|
format_album: $albumartist - $album
|
||||||
|
format_item: $artist - $album - $title
|
||||||
missing:
|
missing:
|
||||||
format: $albumartist - $album - $title
|
|
||||||
count: no
|
count: no
|
||||||
total: no
|
total: no
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue