Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/vendor/github.com/sagikazarmark/locafero/glob_windows.go
2875 views
1
//go:build windows
2
3
package locafero
4
5
// See [filepath.Match]:
6
//
7
// On Windows, escaping is disabled. Instead, '\\' is treated as path separator.
8
const globMatch = "*?[]^"
9
10