2022-04-23 16:46:54 +00:00
|
|
|
# Support for double star globbing with `note.ignore`.
|
|
|
|
# https://github.com/mickael-menu/zk/issues/173
|
|
|
|
|
|
|
|
$ cd blank
|
|
|
|
|
2023-05-20 12:10:18 +00:00
|
|
|
$ echo "[note]\n exclude = ['drafts/**']" > .zk/config.toml
|
2022-04-23 16:46:54 +00:00
|
|
|
|
|
|
|
$ mkdir -p drafts/subdir/subdir
|
|
|
|
$ echo "# This is not ignored" > not-ignored.md
|
|
|
|
$ echo "# This is ignored" > drafts/ignored.md
|
|
|
|
$ echo "# This should be ignored as well" > drafts/subdir/should-ignore.md
|
|
|
|
$ echo "# This should be ignored as well" > drafts/subdir/subdir/should-ignore.md
|
|
|
|
|
|
|
|
$ zk list -qfpath
|
|
|
|
>not-ignored.md
|
|
|
|
|