aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_prt_use_port.fish
blob: 90befa1b3d365ea664f84b9aba6f53de629ace68 (plain)
1
2
3
4
5
6
7
8
9
# a function to test if prt-get should have ports as potential completions
function __fish_prt_use_port -d 'Test if prt-get should have ports as potential completion'
	for i in (commandline -opc)
		if contains -- $i install depinst grpinst diff depends quickdep dependent deptree isinst info path readme ls cat edit
			return 0
		end
	end
	return 1
end