Takeshi Sato
Takeshi Sato
While golang's built-in `regexp` package has the advantage, [constant time guarantees](https://golang.org/pkg/regexp/), it (RE2) has some limitations to express complex rules compared to other languages (PCRE2). (For example, it does not...
On `RegexpFs`, some operations apply given regexps with not file **name** but file **path**. Fix this. README > A filtered view on file *names*, any file NOT matching the passed...
Fixes #2598 - Add `--clobber` to `run download` - Add `--clobber` to `release download` - Add `--skip-existing` to `run download` - Add `--skip-existing` to `release download`
TOML's time representation has known issues about zoneinfo name such as `PDT` in hugo - https://github.com/gohugoio/hugo/pull/9082 - https://github.com/gohugoio/hugo/pull/9982 - https://github.com/gohugoio/hugo/issues/8895 - https://github.com/gohugoio/hugo/issues/9996 These are caused because * TOML's time format...
On macOS, `fsnotify` uses `kqueue` internally. This causes some long-lasting issues (#8594, #6109) though we have the workaround for them. This PR tries to resolve these issues by using `FSEvents`...
**What I did** Add `--dry-run` option to `pull` command. Our final goal is adding the `--dry-run` to `up` and I started with the case of `pull` at first. This is...
## Overview I am trying #2599. I am not sure what is the focuses here. So, as a starting point, I added basic benchmarks for `Unison.Util.Text` vs. `Data.Text`. If this...
Fixes #6134 * Add funcs for levenshtein distance * If `repo clone` fails because of typo, suggest repos - Suggestions are based on - Repos which belongs to the owner...
On Linux, `hugofs.Glob` does not hit any directories which include uppercase letters. (This does not happen on macOS.) Since `resources.GetMatch/Match` uses `Glob`, ``` {{ resources.GetMatch "FOO/bar.css" }} ``` this does...
Fixes #283