├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── THANKS.md ├── conf.d └── z.fish ├── functions ├── __z.fish ├── __z_add.fish ├── __z_clean.fish └── __z_complete.fish ├── man └── man1 │ ├── z.1 │ └── z.md └── test └── z.fish /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /README.html 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/README.md -------------------------------------------------------------------------------- /THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/THANKS.md -------------------------------------------------------------------------------- /conf.d/z.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/conf.d/z.fish -------------------------------------------------------------------------------- /functions/__z.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/functions/__z.fish -------------------------------------------------------------------------------- /functions/__z_add.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/functions/__z_add.fish -------------------------------------------------------------------------------- /functions/__z_clean.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/functions/__z_clean.fish -------------------------------------------------------------------------------- /functions/__z_complete.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/functions/__z_complete.fish -------------------------------------------------------------------------------- /man/man1/z.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/man/man1/z.1 -------------------------------------------------------------------------------- /man/man1/z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/man/man1/z.md -------------------------------------------------------------------------------- /test/z.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jethrokuan/z/HEAD/test/z.fish --------------------------------------------------------------------------------