Finish changing plugin name in docs (#1186)

This commit is contained in:
Adrian Sampson 2015-01-20 15:00:28 -08:00
parent ea2474277a
commit 899365c4a9

View file

@ -1,16 +1,16 @@
FileFilter Plugin
=================
The ``regexfilefilter`` plugin allows you to skip files during import using
The ``filefilter`` plugin allows you to skip files during import using
regular expressions.
To use the ``regexfilefilter`` plugin, enable it in your configuration (see
To use the ``filefilter`` plugin, enable it in your configuration (see
:ref:`using-plugins`).
Configuration
-------------
To configure the plugin, make an ``regexfilefilter:`` section in your
To configure the plugin, make an ``filefilter:`` section in your
configuration file. The available options are:
- **path**: A regular expression to filter files based on its path and name.
@ -23,7 +23,7 @@ configuration file. The available options are:
Here's an example::
regexfilefilter:
filefilter:
path: .*\d\d[^/]+$
# will only import files which names start with two digits
album_path: .*\d\d[^/]+$