Update comment to reflect millisecond

This commit is contained in:
Arun Prakash Jana 2019-11-25 07:50:22 +05:30
parent e6f9d6d2d0
commit e4ffe35892
No known key found for this signature in database
GPG key ID: A75979F35C080412
2 changed files with 8 additions and 8 deletions

View file

@ -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, <kbd>~</kbd>, <kbd>-</kbd>, <kbd>@</kbd>), 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

View file

@ -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);