An open API service indexing awesome lists of open source software.

https://github.com/sawadashota/go-task-completions

Zsh completions for go-task
https://github.com/sawadashota/go-task-completions

completion go-task zsh

Last synced: 11 months ago
JSON representation

Zsh completions for go-task

Awesome Lists containing this project

README

          

# go-task completions

Zsh completions for [go-task](https://github.com/go-task/task)

[![asciicast](https://asciinema.org/a/MZn6pzx7DUTMt1y3pCnEtNi1W.png)](https://asciinema.org/a/MZn6pzx7DUTMt1y3pCnEtNi1W)

## Usage

Completion for `task`

```bash
task
```

Completion for options

```bash
task -
```

## Installation

### [oh-my-zsh](http://github.com/robbyrussell/oh-my-zsh)

Clone the repository inside your oh-my-zsh repo:
```bash
git clone https://github.com/sawadashota/go-task-completions.git ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/task
```

Enable it in your .zshrc by adding it to your plugin list and reloading the completion:
```bash
plugins=(… task)
autoload -U compinit && compinit
```