craft your forge, build your project, grow your community freely
1---
2id: "9df8"
3priority: 20
4sprint: ""
5assignee: null
6status: triage
7kind: issue
8---
910# Plugin path need love
1112Plugin path exec are matched against a string.
1314Need to be multiple strings for [`issues/*.md`, `projects2/issues/*.md`]
1516~~Need to have `**` possibility (not in go filematcher so find a lib or make manual think with a walk) for [`issues/**/*.md`]~~ done in Glob.go
1718~~Add `!` (not) in Glob.go, to be able to do [`issues/*.md`, `!issues/no_that.md`]~~1920212223Today we can do `**/*|!.gitroot/**` which is wierd but works!