mirror of
https://github.com/jarun/nnn.git
synced 2024-12-01 02:49:44 +00:00
Code reformat
This commit is contained in:
parent
eb9faf0832
commit
6709ac01ad
14
src/nnn.c
14
src/nnn.c
|
@ -4166,9 +4166,6 @@ int main(int argc, char *argv[])
|
||||||
idletimeout = xatoi(getenv(env_cfg[NNN_IDLE_TIMEOUT]));
|
idletimeout = xatoi(getenv(env_cfg[NNN_IDLE_TIMEOUT]));
|
||||||
DPRINTF_U(idletimeout);
|
DPRINTF_U(idletimeout);
|
||||||
|
|
||||||
/* Get the clipboard copier, if set */
|
|
||||||
copier = getenv(env_cfg[NNN_COPIER]);
|
|
||||||
|
|
||||||
home = getenv("HOME");
|
home = getenv("HOME");
|
||||||
DPRINTF_S(home);
|
DPRINTF_S(home);
|
||||||
|
|
||||||
|
@ -4188,19 +4185,22 @@ int main(int argc, char *argv[])
|
||||||
cfg.trash = 1;
|
cfg.trash = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (home) {
|
/* Prefix for other temporary ops */
|
||||||
/* Prefix for other temporary ops */
|
if (home)
|
||||||
g_tmpfplen = xstrlcpy(g_tmpfpath, home, HOME_LEN_MAX);
|
g_tmpfplen = xstrlcpy(g_tmpfpath, home, HOME_LEN_MAX);
|
||||||
} else if (getenv("TMPDIR"))
|
|
||||||
g_tmpfplen = xstrlcpy(g_tmpfpath, getenv("TMPDIR"), HOME_LEN_MAX);
|
|
||||||
else if (xdiraccess("/tmp"))
|
else if (xdiraccess("/tmp"))
|
||||||
g_tmpfplen = xstrlcpy(g_tmpfpath, "/tmp", HOME_LEN_MAX);
|
g_tmpfplen = xstrlcpy(g_tmpfpath, "/tmp", HOME_LEN_MAX);
|
||||||
|
else if ((copier = getenv("TMPDIR")) != NULL)
|
||||||
|
g_tmpfplen = xstrlcpy(g_tmpfpath, copier, HOME_LEN_MAX);
|
||||||
|
|
||||||
if (!cfg.picker && g_tmpfplen) {
|
if (!cfg.picker && g_tmpfplen) {
|
||||||
xstrlcpy(g_cppath, g_tmpfpath, PATH_MAX);
|
xstrlcpy(g_cppath, g_tmpfpath, PATH_MAX);
|
||||||
xstrlcpy(g_cppath + g_tmpfplen - 1, "/.nnncp", PATH_MAX - g_tmpfplen);
|
xstrlcpy(g_cppath + g_tmpfplen - 1, "/.nnncp", PATH_MAX - g_tmpfplen);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Get the clipboard copier, if set */
|
||||||
|
copier = getenv(env_cfg[NNN_COPIER]);
|
||||||
|
|
||||||
/* Disable auto-select if opted */
|
/* Disable auto-select if opted */
|
||||||
if (getenv(env_cfg[NNN_NO_AUTOSELECT]))
|
if (getenv(env_cfg[NNN_NO_AUTOSELECT]))
|
||||||
cfg.autoselect = 0;
|
cfg.autoselect = 0;
|
||||||
|
|
Loading…
Reference in a new issue