gitextract_ljxy3y3l/ ├── .editorconfig ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── build.yml │ ├── coverage.yml │ ├── dependabot-sync.yml │ ├── goreleaser.yml │ ├── lint-sync.yml │ └── lint.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── Taskfile.yaml ├── config_cmd.go ├── console_windows.go ├── github.go ├── gitlab.go ├── glow_test.go ├── go.mod ├── go.sum ├── log.go ├── main.go ├── man_cmd.go ├── style.go ├── ui/ │ ├── config.go │ ├── editor.go │ ├── ignore_darwin.go │ ├── ignore_general.go │ ├── keys.go │ ├── markdown.go │ ├── pager.go │ ├── sort.go │ ├── stash.go │ ├── stashhelp.go │ ├── stashitem.go │ ├── styles.go │ └── ui.go ├── url.go ├── url_test.go └── utils/ └── utils.go