about summary refs log tree commit diff stats
path: root/config.default
blob: b1f5a8e37eebe3c9f85a28add7efa5cf8922ab5e (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
# vim: ft=config
# 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