src/nnn.c | 16 +++++++++++++++- diff --git a/src/nnn.c b/src/nnn.c index fed3aaf1dd822af20ed83b34f6c6361cabbf2a63..00e6bc2f519d6f524a45fc2f92aa1e5d437205a3 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5833,6 +5833,18 @@ if (ret != (ssize_t)len && !(ret == -1 && (errno == EAGAIN || errno == EPIPE))) { DPRINTF_S(strerror(errno)); } } + +static void send_to_explorer(int *presel) +{ + if (nselected) { + int fd = open(fifopath, O_WRONLY|O_NONBLOCK|O_CLOEXEC, 0600); + if ((fd == -1) || (seltofile(fd, NULL) != (size_t)(selbufpos))) + printwarn(presel); + if (fd > 1) + close(fd); + } else + notify_fifo(TRUE); /* Send opened path to NNN_FIFO */ +} #endif static void move_cursor(int target, int ignore_scrolloff) @@ -6780,8 +6792,10 @@ (((_ABSSUB(mousetimings[0].tv_sec, mousetimings[1].tv_sec) << 30) + (_ABSSUB(mousetimings[0].tv_nsec, mousetimings[1].tv_nsec))) > DBLCLK_INTERVAL_NS)) break; + /* Double click */ mousetimings[currentmouse].tv_sec = 0; mousedent[currentmouse] = -1; + sel = SEL_OPEN; } else { if (cfg.filtermode || filterset()) presel = FILTER; @@ -6826,7 +6840,7 @@ goto nochange; } #ifndef NOFIFO if (g_state.fifomode && (sel == SEL_OPEN)) { - notify_fifo(TRUE); /* Send opened path to NNN_FIFO */ + send_to_explorer(&presel); /* Write selection to explorer fifo */ goto nochange; } #endif