├── .bumpversion.cfg ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .goreleaser.yml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── jump ├── entry.go ├── entry_test.go ├── match.go ├── match_test.go ├── store.go ├── store_test.go └── utils.go ├── main.go ├── main_test.go └── scripts ├── _j ├── j.fish ├── shonenjump.bash ├── shonenjump.fish └── shonenjump.zsh /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/go.sum -------------------------------------------------------------------------------- /jump/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/entry.go -------------------------------------------------------------------------------- /jump/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/entry_test.go -------------------------------------------------------------------------------- /jump/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/match.go -------------------------------------------------------------------------------- /jump/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/match_test.go -------------------------------------------------------------------------------- /jump/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/store.go -------------------------------------------------------------------------------- /jump/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/store_test.go -------------------------------------------------------------------------------- /jump/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/jump/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/main_test.go -------------------------------------------------------------------------------- /scripts/_j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/scripts/_j -------------------------------------------------------------------------------- /scripts/j.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/scripts/j.fish -------------------------------------------------------------------------------- /scripts/shonenjump.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/scripts/shonenjump.bash -------------------------------------------------------------------------------- /scripts/shonenjump.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/scripts/shonenjump.fish -------------------------------------------------------------------------------- /scripts/shonenjump.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzaku/shonenjump/HEAD/scripts/shonenjump.zsh --------------------------------------------------------------------------------