From: Arun Prakash Jana Date: Mon, 9 Dec 2019 13:42:59 +0000 (+0530) Subject: Fix auto-select for symlink to dir X-Git-Tag: v2.9~199 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=21f9a713dca8454e7fc636f815dcda5725801d10;p=nnn.git Fix auto-select for symlink to dir --- diff --git a/src/nnn.c b/src/nnn.c index c406d6e7..e7e3ecdc 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -2134,7 +2134,7 @@ static int filterentries(char *path) /* If the only match is a dir, auto-select and cd into it */ if (ndents == 1 && cfg.filtermode - && cfg.autoselect && S_ISDIR(dents[0].mode)) { + && cfg.autoselect && (dents[0].flags & DIR_OR_LINK_TO_DIR)) { *ch = KEY_ENTER; cur = 0; goto end;