aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-29 19:43:53 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-29 19:43:53 +0530
commit04b0a38f68b3caf8744f7ba6ee97234689b05ba4 (patch)
treec04ccbc4a94d544d535524984ab72b121d804f7b
parent91901b4f30c8e8760e604271192eab61702797f0 (diff)
downloadnnn-04b0a38f68b3caf8744f7ba6ee97234689b05ba4.tar.gz
vim plugin: Enter clears selection and picks cuntry
-rw-r--r--src/nnn.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/nnn.c b/src/nnn.c
index f59a453..f2cb9c9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2650,6 +2650,18 @@ nochange:
goto begin;
case S_IFREG:
{
+ /* If opened as vim plugin and Enter/^M pressed, pick */
+ if (cfg.picker && sel == SEL_GOIN) {
+ r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
+ /* NOTE: This overrides any previous selection */
+ copybufpos = 0;
+ appendfpath(newpath, r);
+ writecp(newpath, r - 1);
+
+ dentfree(dents);
+ return;
+ }
+
/* If open file is disabled on right arrow or `l`, return */
if (cfg.nonavopen && sel == SEL_NAV_IN)
continue;
@@ -3426,12 +3438,6 @@ nochange:
}
}
- if (cfg.picker && copybufpos == 0 && ndents) {
- r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
- appendfpath(newpath, r);
- writecp(newpath, r - 1);
- }
-
dentfree(dents);
return;
} /* switch (sel) */