mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-09 16:22:56 -05:00
Updated via: go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules and go mod tidy
19 lines
437 B
Go
19 lines
437 B
Go
package match
|
|
|
|
import "strings"
|
|
|
|
// File returns true if prefix can match the file
|
|
func File(file, prefix string) bool {
|
|
// special case for current directory completion
|
|
if file == "./" && (prefix == "." || prefix == "") {
|
|
return true
|
|
}
|
|
if prefix == "." && strings.HasPrefix(file, ".") {
|
|
return true
|
|
}
|
|
|
|
file = strings.TrimPrefix(file, "./")
|
|
prefix = strings.TrimPrefix(prefix, "./")
|
|
|
|
return strings.HasPrefix(file, prefix)
|
|
}
|