├── .github └── workflows │ └── ci.yml ├── LICENSE.md ├── README.md ├── completions └── fisher.fish ├── functions └── fisher.fish └── tests ├── fisher.fish └── ponyo ├── conf.d └── ponyo.fish └── functions └── ponyo.fish /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/README.md -------------------------------------------------------------------------------- /completions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/completions/fisher.fish -------------------------------------------------------------------------------- /functions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/functions/fisher.fish -------------------------------------------------------------------------------- /tests/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/tests/fisher.fish -------------------------------------------------------------------------------- /tests/ponyo/conf.d/ponyo.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/tests/ponyo/conf.d/ponyo.fish -------------------------------------------------------------------------------- /tests/ponyo/functions/ponyo.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/fisher/HEAD/tests/ponyo/functions/ponyo.fish --------------------------------------------------------------------------------