├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── autoload └── whichpr.vim ├── main.go └── main_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | /whichpr 2 | /dist 3 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/README.md -------------------------------------------------------------------------------- /autoload/whichpr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/autoload/whichpr.vim -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocke/whichpr/HEAD/main_test.go --------------------------------------------------------------------------------