Recent Posts

subscripting in zsh

3 minute read

Like most shells, zsh support arrays. ary=(foo bar baz) typeset -p ary # typeset -a ary=( foo bar baz ) With such an array, you can access elements via subs...

eval “$(cmd completion zsh)”

4 minute read

This post is intended to point out flaws with the increasingly more common practice of adding completers (functions used to offer a user possible choices to ...

display strings and _pids

9 minute read

Zsh’s completion system allows for you to display arbitrary display strings for items being completed.