aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/functions/__fish_complete_subcommand.fish
blob: 60ecc35a9b9d161ae7e81c1fec51324b96c9a21d (plain)
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
26
27
28
29
30
31
32
33
34
35
36
function __fish_complete_subcommand  -d "Complete subcommand"
	set -l res ""
	set -l had_cmd 0
	set -l cmd (commandline -cop) (commandline -ct)
	set -l skip_next 1

	for i in $cmd

		if test "$skip_next" = 1
			set skip_next 0
			continue
		end

		if test "$had_cmd" = 1
			set res "$res $i"
		else

			if contains -- $i $argv
				set skip_next 1
				continue
			end

			switch $i
				case '-*'
					 
				case '*'
					set had_cmd 1
					set res $i
			end
		end
	end
	
	printf "%s\n" (commandline -ct)(complete -C $res)

end