aboutsummaryrefslogtreecommitdiffstats
path: root/src/completion
blob: 7e5da65c256a3d6e1a8737530be48103c7f39aec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(auto-auto-complete
	(default (arg SHELL_OR_DEFINITION)
		 (files -f)
		 (suggest default)
		 (desc 'Specify a shell or variable definition'))
	
	(argumented (options -s -f --source --file)
		    (complete --source)
		    (arg SOURCE_FILE)
		    (files -f)
		    (desc 'Specify the input auto-auto-complete script'))
	(argumented (options -o --output)
		    (complete --output)
		    (arg OUTPUT_FILE)
		    (files -f)
		    (desc 'Specify the output shell auto-completion script'))
	(argumented (options -w --where)
		    (complete --where)
		    (arg COMMAND)
		    (files -0)
		    (desc 'Specify a command whose shell auto-completion script path should be printed'))
	
	(suggestion default (verbatim bash zsh fish VARIABLE=VALUE))
)