diff options
| author | 2019-11-25 07:50:22 +0530 | |
|---|---|---|
| committer | 2019-11-25 07:50:22 +0530 | |
| commit | e4ffe35892e094d361e9238a50880d78472f4ebc (patch) | |
| tree | eaf9c1f84730c9901991d08a7498cfe2cbc533a1 | |
| parent | e6f9d6d2d0a6213ef90759ce46375ff6436c0f21 (diff) | |
| download | nnn-e4ffe35892e094d361e9238a50880d78472f4ebc.tar.gz | |
Update comment to reflect millisecond
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/nnn.c | 14 |
2 files changed, 8 insertions, 8 deletions
@@ -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 @@ -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); |