my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
870 B

3 years ago
  1. # mix-fast
  2. Fast mix autocompletion plugin.
  3. This script caches the output for later usage and significantly speeds it up.
  4. It generates a .mix_tasks cache file for current project. Currently if you want
  5. to update cache you should remove .mix_tasks file
  6. Inspired by and based on rake-fast zsh plugin.
  7. This is entirely based on [this pull request by Ullrich Schäfer](https://github.com/robb/.dotfiles/pull/10/), which is inspired by [this Ruby on Rails trick from 2006](https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh/).
  8. ## Installation
  9. Just add the plugin to your `.zshrc`:
  10. ```bash
  11. plugins=(foo bar mix-fast)
  12. ```
  13. You might consider adding `.mix_tasks` to your [global .gitignore](https://help.github.com/articles/ignoring-files#global-gitignore)
  14. ## Usage
  15. `mix`, then press tab
  16. Currently maintained by [styx](https://github.com/styx/)