dotfiles/dot_config/fish/functions/__zoxide_pwd.fish

8 lines
129 B
Fish
Raw Normal View History

function __zoxide_pwd
if test "$_ZO_RESOLVE_SYMLINKS" = 1
builtin pwd -P
else
builtin pwd -L
end
end