gitextract_697t_p9p/ ├── .github/ │ ├── CODEOWNERS │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── build.yml │ ├── dependabot-sync.yml │ ├── goreleaser.yml │ ├── lint-sync.yml │ ├── lint.yml │ └── nightly.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── choose/ │ ├── choose.go │ ├── command.go │ └── options.go ├── completion/ │ ├── bash.go │ ├── command.go │ ├── fish.go │ └── zsh.go ├── confirm/ │ ├── command.go │ ├── confirm.go │ └── options.go ├── cursor/ │ └── cursor.go ├── default.nix ├── examples/ │ ├── .gitignore │ ├── README.md │ ├── choose.tape │ ├── commit.sh │ ├── commit.tape │ ├── confirm.tape │ ├── convert-to-gif.sh │ ├── customize.tape │ ├── demo.sh │ ├── demo.tape │ ├── diyfetch │ ├── fav.txt │ ├── file.tape │ ├── filter-key-value.sh │ ├── flavors.txt │ ├── format.ansi │ ├── git-branch-manager.sh │ ├── git-stage.sh │ ├── gum.js │ ├── gum.py │ ├── gum.rb │ ├── input.tape │ ├── kaomoji.sh │ ├── magic.sh │ ├── pager.tape │ ├── posix.sh │ ├── skate.sh │ ├── spin.tape │ ├── story.txt │ ├── test.sh │ └── write.tape ├── file/ │ ├── command.go │ ├── file.go │ └── options.go ├── filter/ │ ├── command.go │ ├── filter.go │ ├── filter_test.go │ └── options.go ├── flake.nix ├── format/ │ ├── README.md │ ├── command.go │ ├── formats.go │ └── options.go ├── go.mod ├── go.sum ├── gum.go ├── input/ │ ├── command.go │ ├── input.go │ └── options.go ├── internal/ │ ├── decode/ │ │ └── align.go │ ├── exit/ │ │ └── exit.go │ ├── files/ │ │ └── files.go │ ├── stdin/ │ │ └── stdin.go │ ├── timeout/ │ │ └── context.go │ └── tty/ │ └── tty.go ├── join/ │ ├── command.go │ └── options.go ├── log/ │ ├── command.go │ └── options.go ├── main.go ├── man/ │ └── command.go ├── pager/ │ ├── command.go │ ├── options.go │ ├── pager.go │ └── search.go ├── spin/ │ ├── command.go │ ├── options.go │ ├── pty.go │ ├── spin.go │ └── spinners.go ├── style/ │ ├── ascii_a.txt │ ├── borders.go │ ├── command.go │ ├── lipgloss.go │ ├── options.go │ └── spacing.go ├── table/ │ ├── bom.csv │ ├── comma.csv │ ├── command.go │ ├── example.csv │ ├── invalid.csv │ ├── options.go │ └── table.go ├── version/ │ ├── command.go │ └── options.go └── write/ ├── command.go ├── options.go └── write.go