aboutsummaryrefslogtreecommitdiffstats
path: root/completions/sail.fish
blob: bf87670196fa608228bb0bf53d46cbb270d726e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
complete -c sail -s a -l add -d 'Add a jump for the current directory'
complete -c sail -s e -l edit -d 'Edit the jump file'
complete -c sail -s p -l print -d 'Print the jump file'

complete -x -c sail -a "(__sailfish_suggest)"

function __sailfish_suggest
	set -l jumps (__sailfish_print_jumpfile)

	test -r $jumps; or return 1

	set -l cmd (commandline -co)
	test (count $cmd) -gt 1; and return 1

	cat $jumps
end