mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-06 02:38:13 +00:00
7 lines
210 B
Go
7 lines
210 B
Go
|
package match
|
||
|
|
||
|
// Match matches two strings
|
||
|
// it is used for comparing a term to the last typed
|
||
|
// word, the prefix, and see if it is a possible auto complete option.
|
||
|
type Match func(term, prefix string) bool
|