Selection and mouse support for explorer/picker

This commit is contained in:
Luuk van Baal 2021-10-21 20:09:21 +02:00 committed by Arun Prakash Jana
parent 5f76b69c36
commit 2801832c4d
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 15 additions and 1 deletions

View File

@ -5833,6 +5833,18 @@ static void notify_fifo(bool force)
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 @@ nochange:
+ (_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 @@ 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