blob: 28e98e74ffadcf5848e4fbf3184b4a8f65c83d54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# this is a default config file for rf
# the options as presented here should match the default behaviour
# of rf and should give you an overview of what is configurable
# read symlinks (true or false)
symlinks = false
# match whole path by default (true or false)
wholename = false
# limit number of results (a positive integer)
limit = 0
# optionally specify an alternative wildcard character
# (a single ascii character)
# allows you to do something like:
# rf %.jpg
# with a wildcard set to '%' so you don't have to worry about
# shell expansion with the normal '*' character in certain situations
#
# wildcard =
# by default if there are no matches just exit with 0 exit code
# uncomment 'unmatched error' below to exit with a non-zero exit code
# allowing you to do something like this:
# rf {pattern} || fallback
#
# unmatched error
# vim: ft=config
|