From 4c863d9b7b0f63b15006e952e1ca5c81397c9a8e Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 16 Nov 2019 20:10:03 +0530 Subject: [PATCH] Do not check for events when selecting files --- src/nnn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 3388f09c..5c991e6d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1806,7 +1806,7 @@ static int nextsel(int presel) * Check for changes every odd second. */ #ifdef LINUX_INOTIFY - if (!cfg.blkorder && inotify_wd >= 0 && (idle & 1)) { + if (!cfg.selmode && !cfg.blkorder && inotify_wd >= 0 && (idle & 1)) { i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN); if (i > 0) { char *ptr; @@ -1830,7 +1830,7 @@ static int nextsel(int presel) } } #elif defined(BSD_KQUEUE) - if (!cfg.blkorder && event_fd >= 0 && idle & 1 + if (!cfg.selmode && !cfg.blkorder && event_fd >= 0 && idle & 1 && kevent(kq, events_to_monitor, NUM_EVENT_SLOTS, event_data, NUM_EVENT_FDS, >imeout) > 0) c = CONTROL('L');