Renovate Bot
b792a8f374
Some checks are pending
Dev Version / Release (push) Waiting to run
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/urfave/cli/v2](https://github.com/urfave/cli) | require | minor | `v2.25.7` -> `v2.27.4` | > ❗ **Important** > > Release Notes retrieval for this PR were skipped because no github.com credentials were available. > If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yMS4yIiwidXBkYXRlZEluVmVyIjoiMzguMjEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #5 Co-authored-by: Renovate Bot <renovate@keks.cloud> Co-committed-by: Renovate Bot <renovate@keks.cloud>
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
//go:build !urfave_cli_no_suggest
|
|
// +build !urfave_cli_no_suggest
|
|
|
|
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/xrash/smetrics"
|
|
)
|
|
|
|
func init() {
|
|
SuggestFlag = suggestFlag
|
|
SuggestCommand = suggestCommand
|
|
}
|
|
|
|
func jaroWinkler(a, b string) float64 {
|
|
// magic values are from https://github.com/xrash/smetrics/blob/039620a656736e6ad994090895784a7af15e0b80/jaro-winkler.go#L8
|
|
const (
|
|
boostThreshold = 0.7
|
|
prefixSize = 4
|
|
)
|
|
return smetrics.JaroWinkler(a, b, boostThreshold, prefixSize)
|
|
}
|
|
|
|
func suggestFlag(flags []Flag, provided string, hideHelp bool) string {
|
|
distance := 0.0
|
|
suggestion := ""
|
|
|
|
for _, flag := range flags {
|
|
flagNames := flag.Names()
|
|
if !hideHelp && HelpFlag != nil {
|
|
flagNames = append(flagNames, HelpFlag.Names()...)
|
|
}
|
|
for _, name := range flagNames {
|
|
newDistance := jaroWinkler(name, provided)
|
|
if newDistance > distance {
|
|
distance = newDistance
|
|
suggestion = name
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(suggestion) == 1 {
|
|
suggestion = "-" + suggestion
|
|
} else if len(suggestion) > 1 {
|
|
suggestion = "--" + suggestion
|
|
}
|
|
|
|
return suggestion
|
|
}
|
|
|
|
// suggestCommand takes a list of commands and a provided string to suggest a
|
|
// command name
|
|
func suggestCommand(commands []*Command, provided string) (suggestion string) {
|
|
distance := 0.0
|
|
for _, command := range commands {
|
|
for _, name := range append(command.Names(), helpName, helpAlias) {
|
|
newDistance := jaroWinkler(name, provided)
|
|
if newDistance > distance {
|
|
distance = newDistance
|
|
suggestion = name
|
|
}
|
|
}
|
|
}
|
|
|
|
return fmt.Sprintf(SuggestDidYouMeanTemplate, suggestion)
|
|
}
|