-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.opt
More file actions
48 lines (33 loc) · 1.04 KB
/
Copy pathexample.opt
File metadata and controls
48 lines (33 loc) · 1.04 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Example options file.
[output]
filename="/test/home/Documents/project-tasks"
by_modified_time_desc=False
do_text_file=Yes
do_text_file_dt=No
no_html=n
title="Projects To-Do"
# True/False, Yes/No, y/n, and 1/0 all work for switch settings
# (case-insensitive).
# The [match] section is optional. These are same
# as the default patterns.
[match]
"^notes.*.txt$"
".*notes.txt$"
"^todo.*.txt$"
".*-todo.txt$"
"^Context-.*.txt$"
# In the [folders] section, '+' is the switch for recursive scan into sub-folders.
[folders]
"/test/home/Projects"+
# The [exclude] section only takes full folder paths.
# In this scenario, we don't want to see Project items in the "Hold" folder.
[exclude]
"/test/home/Projects/Hold"
# The [ignore] section takes patterns to match partial folder paths and
# wildacard patterns to match file names.
# With the settings below, a folder named "Rubbish" at any level in the
# folder tree is excluded. Any file with "private" in its name (such
# as "notes-private.txt") is excluded.
[ignore]
Rubbish/
*private.*