folder filter: only assume regex if filter is ~fmt

This commit is contained in:
Drew DeVault 2019-08-20 13:04:21 +09:00
parent 1f5293931a
commit 334ca89bea
2 changed files with 10 additions and 5 deletions

View File

@ -226,7 +226,7 @@ Note that many of these configuration options are written for you, such as
*folders*
Specifies the comma separated list of folders to display in the sidebar.
Supports regex patterns.
Names prefixed with ~ are interpreted as regular expressions.
Default: all folders

View File

@ -161,12 +161,17 @@ func (dirlist *DirectoryList) Prev() {
}
func folderMatches(folder string, pattern string) bool {
r, err := regexp.Compile(pattern)
if err != nil {
if len(pattern) == 0 {
return false
}
return r.Match([]byte(folder))
if pattern[0] == '~' {
r, err := regexp.Compile(pattern)
if err != nil {
return false
}
return r.Match([]byte(folder))
}
return pattern == folder
}
// filterDirsByFoldersConfig sets dirlist.dirs to the filtered subset of the