[no subject]



mc.1.in.diff is attached.
Strage, but I have't found description for Meta-A there.
 
> -- 
> Regards,
> Pavel Roskin

Regards, Walery

--Kj7319i9nmIyA2yE
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="mc.1.in.diff"

--- mc.1.in.orig	Wed Aug  1 10:13:48 2001
+++ mc.1.in	Wed Aug  1 10:14:27 2001
@@ -451,6 +451,9 @@
 .B C-Enter.
 Same a M-Enter, this one only works on the Linux console.
 .PP
+.B C-F.
+Copy the currently selected file name with full path to the command line.
+.PP
 .B M-Tab.
 Does the filename, command, variable, username and hostname
 .\"LINK2"

--Kj7319i9nmIyA2yE
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="main.c.diff"

--- main.c.orig	Wed Aug  1 08:43:56 2001
+++ main.c	Wed Aug  1 10:23:52 2001
@@ -1574,6 +1574,7 @@
 }
 #endif
 
+
 #ifndef HAVE_GNOME
 static void copy_current_pathname (void)
 {
@@ -1645,6 +1646,13 @@
     g_free (tmp);
 }   
 
+/* copy filename with full path to command line - mAX */
+static void copy_full_prog_name (void)
+{
+    copy_current_pathname ();
+    copy_prog_name ();
+}
+
 static void copy_tagged (WPanel *panel)
 {
     int i;
@@ -1817,6 +1825,7 @@
     { ESC_CHAR,   nothing },
     { XCTRL('c'), nothing },
     { XCTRL('g'), nothing },
+    { XCTRL('f'), copy_full_prog_name },
     { 0, 0 },
 };
 
@@ -2007,7 +2016,7 @@
 	    send_message_to (h, (Widget *) cmdline, WIDGET_KEY, id);
 	    return MSG_HANDLED;
 	}
-
+     
 	if ((!alternate_plus_minus || !(console_flag || xterm_flag)) &&
              !quote && !cpanel->searching) {
 	    if(!only_leading_plus_minus) {

--Kj7319i9nmIyA2yE--




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]