summaryrefslogtreecommitdiff
path: root/dot_config/private_fish/functions/setux.fish
blob: 55a457f462d5b9dee9e70a3601b6753b5f2e8df5 (plain) (blame)
1
2
3
4
5
6
7
8
9
function setux --description "set named -U variables as -gx, overriding if necessary"
	for i in $argv
		if set -qU $i
			set -elg $i
			set -gx $i $$i
		end
	end
	:
end