1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-13 10:50:40 +01:00

Oh-My-Zsh plugin to support Taskfile.yml completion

This commit is contained in:
Emilien T
2022-06-28 11:46:44 +02:00
parent 4c82a2eedf
commit c08e9eb232
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# `Taskfile` plugin
This plugin provides completion for [Task](https://taskfile.dev/), as well as the shortcut alias `t`
To use it add `taskfile` to the plugins array in your zshrc file.
```bash
plugins=(... taskfile)
```
## Usage
Of course, you need [Task](https://taskfile.dev/installation/) to be installed.
Typing `t [TAB]` will give you a list of commands provided by your `Taskfile.yml`
<br/>
---
Thanks to [Berger91](https://github.com/Berger91/taskfile-zsh-autocompletion) for the original completion method.