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
- Host: GitHub
- URL: https://github.com/sawadashota/go-task-completions
- Owner: sawadashota
- License: mit
- Created: 2018-04-26T12:05:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-19T10:31:49.000Z (over 3 years ago)
- Last Synced: 2023-03-21T11:10:39.212Z (about 3 years ago)
- Topics: completion, go-task, zsh
- Homepage:
- Size: 6.84 KB
- Stars: 9
- Watchers: 1
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-task completions
Zsh completions for [go-task](https://github.com/go-task/task)
[](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
```