mirror of
https://github.com/jarun/nnn.git
synced 2025-04-05 21:16:36 +00:00
Fix #304
This commit is contained in:
parent
d03ff4dc91
commit
41fcbd9b2f
1 changed files with 25 additions and 5 deletions
30
src/nnn.c
30
src/nnn.c
|
@ -809,18 +809,19 @@ static size_t selectiontofd(int fd, uint *pcount)
|
|||
return pos;
|
||||
}
|
||||
|
||||
static void showcplist(void)
|
||||
/* List selection from selection buffer */
|
||||
static bool showcplist(void)
|
||||
{
|
||||
int fd;
|
||||
size_t pos;
|
||||
|
||||
if (!copybufpos)
|
||||
return;
|
||||
return FALSE;
|
||||
|
||||
fd = create_tmp_file();
|
||||
if (fd == -1) {
|
||||
DPRINTF_S("mkstemp failed!");
|
||||
return;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
pos = selectiontofd(fd, NULL);
|
||||
|
@ -829,6 +830,26 @@ static void showcplist(void)
|
|||
if (pos && pos == copybufpos)
|
||||
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
|
||||
unlink(g_tmpfpath);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* List selection from selection file (another instance) */
|
||||
static bool showcpfile(void)
|
||||
{
|
||||
struct stat sb;
|
||||
|
||||
if (stat(g_cppath, &sb) == -1)
|
||||
return FALSE;
|
||||
|
||||
/* Nothing selected if file size is 0 */
|
||||
if (!sb.st_size)
|
||||
return FALSE;
|
||||
|
||||
snprintf(g_buf, CMD_LEN_MAX, "cat %s | tr \'\\0\' \'\\n\'", g_cppath);
|
||||
spawn("sh", "-c", g_buf, NULL, F_NORMAL | F_CMD);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static bool cpsafe(void)
|
||||
|
@ -3923,8 +3944,7 @@ nochange:
|
|||
}
|
||||
continue;
|
||||
case SEL_COPYLIST:
|
||||
if (copybufpos) {
|
||||
showcplist();
|
||||
if (showcplist() || showcpfile()) {
|
||||
if (cfg.filtermode)
|
||||
presel = FILTER;
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue