|
| 1 | +{{- /* |
| 2 | +Copyright (c) 2021-present Fabien Potencier <[email protected]> |
| 3 | + |
| 4 | +This file is part of Symfony CLI project |
| 5 | + |
| 6 | +This program is free software: you can redistribute it and/or modify |
| 7 | +it under the terms of the GNU Affero General Public License as |
| 8 | +published by the Free Software Foundation, either version 3 of the |
| 9 | +License, or (at your option) any later version. |
| 10 | + |
| 11 | +This program is distributed in the hope that it will be useful, |
| 12 | +but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | +GNU Affero General Public License for more details. |
| 15 | + |
| 16 | +You should have received a copy of the GNU Affero General Public License |
| 17 | +along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | +*/ -}} |
| 19 | + |
| 20 | +{{- /* |
| 21 | +ZSH completions for github.com/symfony-cli/console based projects |
| 22 | + |
| 23 | +References: |
| 24 | + - https://github.com/posener/complete/blob/master/install/zsh.go |
| 25 | +*/ -}} |
1 | 26 | #compdef {{ .App.HelpName }} |
2 | 27 |
|
3 | | -# Copyright (c) 2021-present Fabien Potencier <[email protected]> |
4 | | -# |
5 | | -# This file is part of Symfony CLI project |
6 | | -# |
7 | | -# This program is free software: you can redistribute it and/or modify |
8 | | -# it under the terms of the GNU Affero General Public License as |
9 | | -# published by the Free Software Foundation, either version 3 of the |
10 | | -# License, or (at your option) any later version. |
11 | | -# |
12 | | -# This program is distributed in the hope that it will be useful, |
13 | | -# but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | -# GNU Affero General Public License for more details. |
16 | | -# |
17 | | -# You should have received a copy of the GNU Affero General Public License |
18 | | -# along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | | - |
20 | | -# |
21 | 28 | # zsh completions for {{ .App.HelpName }} |
22 | | -# |
23 | | -# References: |
24 | | -# - https://github.com/posener/complete/blob/master/install/zsh.go |
25 | | -# |
26 | 29 |
|
27 | 30 | autoload -U +X bashcompinit && bashcompinit |
28 | 31 | complete -o nospace -C "{{ .CurrentBinaryInvocation }} self:autocomplete" {{ .App.HelpName }} |
0 commit comments