You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,27 @@ gulp.task(build);
54
54
55
55
Tasks can be executed by running `gulp <task> <othertask>`. Just running `gulp` will execute the task you registered called `default`. If there is no `default` task, gulp will error.
56
56
57
+
## Completion
58
+
> Thanks to the grunt team, specifically Tyler Kellen
59
+
60
+
To enable tasks auto-completion in shell you should add `eval "$(gulp --completion=shell)"` in your `.shellrc` file.
61
+
62
+
###### Bash:
63
+
64
+
Add `eval "$(gulp --completion=bash)"` to `~/.bashrc`.
65
+
66
+
###### Zsh:
67
+
68
+
Add `eval "$(gulp --completion=zsh)"` to `~/.zshrc`.
69
+
70
+
###### Powershell:
71
+
72
+
Add `Invoke-Expression ((gulp --completion=powershell) -join [System.Environment]::NewLine)` to `$PROFILE`.
73
+
74
+
###### Fish:
75
+
76
+
Add `gulp --completion=fish | source` to `~/.config/fish/config.fish`.
77
+
57
78
## Compilers
58
79
59
80
You can find a list of supported languages at https://github.com/js-cli/js-interpret. If you would like to add support for a new language, send pull requests/open issues on that project.
0 commit comments