diff options
Diffstat (limited to 'home-config/fish/functions/__zoxide_pwd.fish')
-rw-r--r-- | home-config/fish/functions/__zoxide_pwd.fish | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home-config/fish/functions/__zoxide_pwd.fish b/home-config/fish/functions/__zoxide_pwd.fish new file mode 100644 index 0000000..49f9357 --- /dev/null +++ b/home-config/fish/functions/__zoxide_pwd.fish | |||
@@ -0,0 +1,7 @@ | |||
1 | function __zoxide_pwd | ||
2 | if test "$_ZO_RESOLVE_SYMLINKS" = 1 | ||
3 | builtin pwd -P | ||
4 | else | ||
5 | builtin pwd -L | ||
6 | end | ||
7 | end | ||