mirror of
https://github.com/beetbox/beets.git
synced 2026-01-05 23:43:31 +01:00
Update config_default.yaml
This commit is contained in:
parent
9757bc0002
commit
409f2f85cb
1 changed files with 4 additions and 5 deletions
|
|
@ -40,12 +40,12 @@ ignore: [".*", "*~", "System Volume Information", "lost+found"]
|
|||
ignore_hidden: yes
|
||||
|
||||
replace:
|
||||
# Bad chars to _
|
||||
# Replace bad characters with _
|
||||
# prohibited in many filesystem paths
|
||||
'[<>:\?\*\|]': _
|
||||
# double quotation mark "
|
||||
"\"": _
|
||||
# \ or /
|
||||
'\"': _
|
||||
# path separators: \ or /
|
||||
'[\\/]': _
|
||||
# starting and closing periods
|
||||
'^\.': _
|
||||
|
|
@ -53,9 +53,8 @@ replace:
|
|||
# control characters
|
||||
'[\x00-\x1f]': _
|
||||
# dash at the start of a filename (causes command line ambiguity)
|
||||
# https://unix.stackexchange.com/questions/16357/usage-of-dash-in-place-of-a-filename
|
||||
'^-': _
|
||||
# Bad chars to nothing
|
||||
# Replace bad characters with nothing
|
||||
# starting and closing whitespace
|
||||
'\s+$': ''
|
||||
'^\s+': ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue