summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2018-04-06 21:59:28 +0530
committerAnish Athalye <me@anishathalye.com>2018-04-13 08:49:02 -0400
commit7d069b4ac8723be24010ac79c1185a231fa458f2 (patch)
tree37a857bcafe7dacf592a06d914d91f8f6eb41e87 /README.md
parent7ebb601a10eb7fdcb533d4f4ca837d97d27f484a (diff)
Rename 'use_glob' to 'glob'
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index e5a58b2..06d073b 100644
--- a/README.md
+++ b/README.md
@@ -180,7 +180,7 @@ Available extended configuration parameters:
| `relink` | Removes the old target if it's a symlink (default:false) |
| `force` | Force removes the old target, file or folder, and forces a new link (default:false) |
| `relative` | Use a relative path when creating the symlink (default:false, absolute links) |
-| `use_glob` | Treat a `*` character as a wildcard, and perform link operations on all of those matches (default:false) |
+| `glob` | Treat a `*` character as a wildcard, and perform link operations on all of those matches (default:false) |
#### Example
@@ -213,7 +213,7 @@ the following three config files equivalent:
force: true
path: zshrc
~/.config/:
- use_glob: true
+ glob: true
path: config/*
relink: true
```
@@ -227,7 +227,7 @@ the following three config files equivalent:
~/.zshrc:
force: true
~/.config/:
- use_glob: true
+ glob: true
path: config/*
relink: true
```
@@ -245,7 +245,7 @@ the following three config files equivalent:
"force": true
},
"~/.config/": {
- "use_glob": true,
+ "glob": true,
"path": "config/*",
"relink": true
}