aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_subcommand.fish
blob: 4707450fc397449510bc4af1baf34f5ca88621cf (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
37
38
39
40
41
42
43
44
45
function __fish_complete_subcommand  -d "Complete subcommand" --no-scope-shadowing
	set -l skip_next 1
    set -l test
    switch "$argv[1]"
        case '--fcs-skip=*'
            set -l rest
            string replace -a = ' ' -- $argv[1] | read test skip_next
            set -e argv[1]
    end

	set -l res ""
	set -l had_cmd 0
	set -l cmd (commandline -cop) (commandline -ct)

	for i in $cmd

		if test $skip_next -gt 0
            set skip_next (math $skip_next - 1)
			continue
		end

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

			if contains -- $i $argv
				set skip_next (math $skip_next + 1)
				continue
			end

			switch $i
				case '-*'
				case '*=*'
				case '*'

					set had_cmd 1
					set res $i
			end
		end
	end

	printf "%s\n" (complete -C$res)

end