diff --git a/README.md b/README.md
index 8fc27b12..5ef56fe4 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Add to that an awesome [Wiki](https://github.com/jarun/nnn/wiki)!
- *Navigate-as-you-type* with dir auto-select
- Contexts (_aka_ tabs/workspaces) with custom colors
- Sessions, bookmarks; pin and visit a dir
+ - Remote mounts (needs sshfs, rclone)
- Familiar shortcuts (arrows, ~, -, @), quick reference
- CD on quit (*easy* shell integration)
- Sorting
@@ -52,7 +53,6 @@ Add to that an awesome [Wiki](https://github.com/jarun/nnn/wiki)!
- Convenience
- Run plugins and commands with custom keybinds
- FreeDesktop compliant trash (needs trash-cli)
- - Remote mounts (needs sshfs, rclone)
- Cross-dir file/all/range selection
- Batch rename selection or dir entries
- Copy (as), move (as), delete, archive, link selection
diff --git a/src/nnn.c b/src/nnn.c
index 72b15cc0..07a52ce1 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -113,7 +113,7 @@
#define _ABSSUB(N, M) (((N) <= (M)) ? ((M) - (N)) : ((N) - (M)))
#define DOUBLECLICK_INTERVAL_NS (400000000)
-#define XDELAY_INTERVAL_US (350000) /* 350 ms delay */
+#define XDELAY_INTERVAL_MS (350000) /* 350 ms delay */
#define LEN(x) (sizeof(x) / sizeof(*(x)))
#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
@@ -2872,7 +2872,7 @@ static bool load_session(const char *sname, char **path, char **lastdir, char **
fsession = fopen(spath, "rb");
if (!fsession) {
printmsg(messages[MSG_SSN_MISSING]);
- xdelay(XDELAY_INTERVAL_US);
+ xdelay(XDELAY_INTERVAL_MS);
return FALSE;
}
@@ -2903,7 +2903,7 @@ END:
if (!status) {
printmsg(messages[MSG_FAILED]);
- xdelay(XDELAY_INTERVAL_US);
+ xdelay(XDELAY_INTERVAL_MS);
}
return status;
@@ -3146,7 +3146,7 @@ static void find_accessible_parent(char *path, char *newpath, char *lastname, in
xstrlcpy(path, dir, PATH_MAX);
printmsg(messages[MSG_DIR_ACCESS]);
- xdelay(XDELAY_INTERVAL_US);
+ xdelay(XDELAY_INTERVAL_MS);
}
static bool execute_file(int cur, char *path, char *newpath, int *presel)
@@ -3320,7 +3320,7 @@ static bool remote_mount(char *newpath, int *presel)
} else {
spawn(env, tmp, newpath, NULL, flag);
printmsg(messages[MSG_RCLONE_DELAY]);
- xdelay(XDELAY_INTERVAL_US * 10);
+ xdelay(XDELAY_INTERVAL_MS * 10);
}
return TRUE;
@@ -4791,7 +4791,7 @@ nochange:
inode = sb.st_ino;
selstartid = cur;
printmsg(messages[MSG_RANGE_SEL_ON]);
- xdelay(XDELAY_INTERVAL_US);
+ xdelay(XDELAY_INTERVAL_MS);
continue;
}
@@ -4836,7 +4836,7 @@ nochange:
/* Show the range count */
//r = selendid - selstartid + 1;
//mvprintw(xlines - 1, 0, "+%d\n", r);
- //xdelay(XDELAY_INTERVAL_US);
+ //xdelay(XDELAY_INTERVAL_MS);
//writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
//spawn(copier, NULL, NULL, NULL, F_NOTRACE);