mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-08-29 02:34:16 -05:00
Bumps [github.com/integrii/flaggy](https://github.com/integrii/flaggy) from 1.4.0 to 1.8.0. - [Release notes](https://github.com/integrii/flaggy/releases) - [Commits](https://github.com/integrii/flaggy/compare/v1.4.0...v1.8.0) --- updated-dependencies: - dependency-name: github.com/integrii/flaggy dependency-version: 1.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
8 lines
336 B
Go
8 lines
336 B
Go
package flaggy
|
|
|
|
// defaultHelpTemplate is the help template used by default
|
|
// {{if (or (or (gt (len .StringFlags) 0) (gt (len .IntFlags) 0)) (gt (len .BoolFlags) 0))}}
|
|
// {{if (or (gt (len .StringFlags) 0) (gt (len .BoolFlags) 0))}}
|
|
const defaultHelpTemplate = `{{range $idx, $line := .Lines}}{{if gt $idx 0}}
|
|
{{end}}{{$line}}{{end}}`
|