mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Merge branch '3339_mcedit_paste_to_clipboard'
* 3339_mcedit_paste_to_clipboard: Clarify description of clipboard_store and clipboard_paste options. Clarify flags and mode to open clipboard file. Ticket #3339: fix pasting from clipboard.
This commit is contained in:
commit
e4f3aed41f
@ -3927,7 +3927,7 @@ para cargar texto de un archivo como selección en X Window.
|
|||||||
Por ejemplo:
|
Por ejemplo:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_store=xclip \-i
|
clipboard_store=/usr/bin/xclip \-i
|
||||||
.fi
|
.fi
|
||||||
.TP
|
.TP
|
||||||
.I clipboard_paste
|
.I clipboard_paste
|
||||||
@ -3936,7 +3936,7 @@ para volcar la selección de X Window a la salida estándar.
|
|||||||
Por ejemplo:
|
Por ejemplo:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_paste=xclip \-o
|
clipboard_paste=/usr/bin/xclip \-o
|
||||||
.fi
|
.fi
|
||||||
.TP
|
.TP
|
||||||
.I autodetect_codeset
|
.I autodetect_codeset
|
||||||
|
@ -4108,7 +4108,7 @@ utility like 'xclip' to read text into X selection from file.
|
|||||||
For example:
|
For example:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_store=xclip \-i
|
clipboard_store=/usr/bin/xclip \-i
|
||||||
.fi
|
.fi
|
||||||
.TP
|
.TP
|
||||||
.I clipboard_paste
|
.I clipboard_paste
|
||||||
@ -4117,7 +4117,7 @@ utility like 'xclip' to print the selection to standard out.
|
|||||||
For example:
|
For example:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_paste=xclip \-o
|
clipboard_paste=/usr/bin/xclip \-o
|
||||||
.fi
|
.fi
|
||||||
.TP
|
.TP
|
||||||
.I autodetect_codeset
|
.I autodetect_codeset
|
||||||
|
@ -4491,7 +4491,7 @@ mc.ext\&.
|
|||||||
Например:
|
Например:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_store=xclip \-i
|
clipboard_store=/usr/bin/xclip \-i
|
||||||
.fi
|
.fi
|
||||||
.TP
|
.TP
|
||||||
.I clipboard_paste
|
.I clipboard_paste
|
||||||
@ -4501,7 +4501,7 @@ clipboard_store=xclip \-i
|
|||||||
Например:
|
Например:
|
||||||
.PP
|
.PP
|
||||||
.nf
|
.nf
|
||||||
clipboard_paste=xclip \-o
|
clipboard_paste=/usr/bin/xclip \-o
|
||||||
.fi
|
.fi
|
||||||
.PP
|
.PP
|
||||||
.I autodetect_codeset
|
.I autodetect_codeset
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
Written by:
|
Written by:
|
||||||
Ilia Maslakov <il.smind@gmail.com>, 2010.
|
Ilia Maslakov <il.smind@gmail.com>, 2010.
|
||||||
|
Andrew Borodin <aborodin@vmail.ru>, 2014.
|
||||||
|
|
||||||
This file is part of the Midnight Commander.
|
This file is part of the Midnight Commander.
|
||||||
|
|
||||||
@ -27,6 +28,8 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
|
||||||
#include "lib/global.h"
|
#include "lib/global.h"
|
||||||
#include "lib/fileloc.h"
|
#include "lib/fileloc.h"
|
||||||
@ -52,6 +55,10 @@ char *clipboard_paste_path = NULL;
|
|||||||
|
|
||||||
/*** file scope variables ************************************************************************/
|
/*** file scope variables ************************************************************************/
|
||||||
|
|
||||||
|
static const int clip_open_flags = O_CREAT | O_WRONLY | O_TRUNC | O_BINARY;
|
||||||
|
static const mode_t clip_open_mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------- */
|
||||||
/*** file scope functions ************************************************************************/
|
/*** file scope functions ************************************************************************/
|
||||||
/* --------------------------------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
@ -93,7 +100,8 @@ gboolean
|
|||||||
clipboard_file_from_ext_clip (const gchar * event_group_name, const gchar * event_name,
|
clipboard_file_from_ext_clip (const gchar * event_group_name, const gchar * event_name,
|
||||||
gpointer init_data, gpointer data)
|
gpointer init_data, gpointer data)
|
||||||
{
|
{
|
||||||
char *tmp, *cmd;
|
mc_pipe_t *p;
|
||||||
|
int file = -1;
|
||||||
const char *d = getenv ("DISPLAY");
|
const char *d = getenv ("DISPLAY");
|
||||||
|
|
||||||
(void) event_group_name;
|
(void) event_group_name;
|
||||||
@ -104,14 +112,59 @@ clipboard_file_from_ext_clip (const gchar * event_group_name, const gchar * even
|
|||||||
if (d == NULL || clipboard_paste_path == NULL || clipboard_paste_path[0] == '\0')
|
if (d == NULL || clipboard_paste_path == NULL || clipboard_paste_path[0] == '\0')
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
tmp = mc_config_get_full_path (EDIT_CLIP_FILE);
|
p = mc_popen (clipboard_paste_path, NULL);
|
||||||
cmd = g_strconcat (clipboard_paste_path, " > ", tmp, " 2>/dev/null", (char *) NULL);
|
if (p == NULL)
|
||||||
|
return TRUE; /* don't show error message */
|
||||||
|
|
||||||
if (cmd != NULL)
|
p->out.null_term = FALSE;
|
||||||
my_system (EXECUTE_AS_SHELL, mc_global.tty.shell, cmd);
|
p->err.null_term = TRUE;
|
||||||
|
|
||||||
|
while (TRUE)
|
||||||
|
{
|
||||||
|
GError *error = NULL;
|
||||||
|
|
||||||
|
p->out.len = MC_PIPE_BUFSIZE;
|
||||||
|
p->err.len = MC_PIPE_BUFSIZE;
|
||||||
|
|
||||||
|
mc_pread (p, &error);
|
||||||
|
|
||||||
|
if (error != NULL)
|
||||||
|
{
|
||||||
|
/* don't show error message */
|
||||||
|
g_error_free (error);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ignore stderr and get stdout */
|
||||||
|
if (p->out.len == MC_PIPE_STREAM_EOF || p->out.len == MC_PIPE_ERROR_READ)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (p->out.len > 0)
|
||||||
|
{
|
||||||
|
ssize_t nwrite;
|
||||||
|
|
||||||
|
if (file < 0)
|
||||||
|
{
|
||||||
|
vfs_path_t *fname_vpath;
|
||||||
|
|
||||||
|
fname_vpath = mc_config_get_full_vpath (EDIT_CLIP_FILE);
|
||||||
|
file = mc_open (fname_vpath, clip_open_flags, clip_open_mode);
|
||||||
|
vfs_path_free (fname_vpath);
|
||||||
|
|
||||||
|
if (file < 0)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
nwrite = mc_write (file, p->out.buf, p->out.len);
|
||||||
|
(void) nwrite;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file >= 0)
|
||||||
|
mc_close (file);
|
||||||
|
|
||||||
|
mc_pclose (p, NULL);
|
||||||
|
|
||||||
g_free (cmd);
|
|
||||||
g_free (tmp);
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,8 +188,7 @@ clipboard_text_to_file (const gchar * event_group_name, const gchar * event_name
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
fname_vpath = mc_config_get_full_vpath (EDIT_CLIP_FILE);
|
fname_vpath = mc_config_get_full_vpath (EDIT_CLIP_FILE);
|
||||||
file = mc_open (fname_vpath, O_CREAT | O_WRONLY | O_TRUNC,
|
file = mc_open (fname_vpath, clip_open_flags, clip_open_mode);
|
||||||
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH | O_BINARY);
|
|
||||||
vfs_path_free (fname_vpath);
|
vfs_path_free (fname_vpath);
|
||||||
|
|
||||||
if (file == -1)
|
if (file == -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user