Zsh tio completion

June 16, 2025 ยท View on GitHub

This plugin adds zsh-completion for tio

Installation

  • oh-my-zsh:

    • Clone this repository to $HOME/.oh-my-zsh/custom/plugins/:

      git clone https://github.com/jbarberu/zsh-tio.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}"/plugins/zsh-tio
      
    • Add zsh-tio to the plugins array in your zshrc file:

      plugins=(... zsh-tio)
      
  • To install the plugin separately, clone this repository and source zsh-tio.plugin.zsh in your zshrc. Then add this repository's path to the completion path:

    source ".../zsh-tio/zsh-tio.plugin.zsh"
    fpath+=".../zsh-tio"
    autoload -U compinit
    compinit
    

Credits

  • This repo structure was based off of the zsh-bitbake plugin.