aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/fzcd6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/fzcd b/plugins/fzcd
index 9e93969..5e0b5f0 100755
--- a/plugins/fzcd
+++ b/plugins/fzcd
@@ -32,5 +32,9 @@ if [ -n "$sel" ]; then
# Remove "./" prefix if it exists
sel="${sel#./}"
- nnn_cd "$PWD/$sel"
+ if [ "$PWD" = "/" ]; then
+ nnn_cd "/$sel"
+ else
+ nnn_cd "$PWD/$sel"
+ fi
fi