aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_pwd.fish
blob: 2827287157e3a90d67ae66b7e427cd771433b1f1 (plain)
1
2
3
4
5
6
7
8
9
10
switch (uname)
case 'CYGWIN_*'
	function __fish_pwd --description "Show current path"
		pwd | sed -e 's-^/cygdrive/\(.\)/\?-\u\1:/-'
	end
case '*'
	function __fish_pwd --description "Show current path"
		pwd
	end
end