mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
15 lines
507 B
Fish
15 lines
507 B
Fish
switch (uname)
|
|
case 'CYGWIN_*'
|
|
function __fish_pwd --description "Show current path"
|
|
if status test-feature regex-easyesc
|
|
pwd | string replace -r '^/cygdrive/(.)?' '\U$1:'
|
|
else
|
|
# TODO: Remove this once regex-easyesc becomes the default
|
|
pwd | string replace -r '^/cygdrive/(.)?' '\\\U$1:'
|
|
end
|
|
end
|
|
case '*'
|
|
function __fish_pwd --description "Show current path"
|
|
pwd
|
|
end
|
|
end
|