Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /proc/self/root/usr/share/fish/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/usr/share/fish/functions/__fish_complete_subcommand.fish
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


Hry