1
0
Fork 0
mirror of synced 2024-07-26 18:11:13 -04:00

Add documentation on force option for clean plugin

This commit is contained in:
Anish Athalye 2017-03-26 11:30:36 -04:00
parent bf2a9330da
commit c29ba8d722

View file

@ -273,16 +273,26 @@ command itself.
Clean commands specify directories that should be checked for dead symbolic
links. These dead links are removed automatically. Only dead links that point
to the dotfiles directory are removed.
to the dotfiles directory are removed unless the `force` option is set to
`true`.
#### Format
Clean commands are specified as an array of directories to be cleaned.
Clean commands support an extended configuration syntax. In this type of
configuration, commands are specified as directory paths mapping to options. If
the `force` option is set to `true`, dead links are removed even if they don't
point to a file inside the dotfiles directory.
#### Example
```yaml
- clean: ['~']
- clean:
~/.config:
force: true
```
### Defaults