gnome-commander r2490 - in branches/gcmd-1-3: . doc doc/C src



Author: epiotr
Date: Mon Mar 23 17:41:51 2009
New Revision: 2490
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=2490&view=rev

Log:
Added shortcut CTRL+E to command line history list

Modified:
   branches/gcmd-1-3/ChangeLog
   branches/gcmd-1-3/NEWS
   branches/gcmd-1-3/doc/C/gnome-commander.xml
   branches/gcmd-1-3/doc/keys.txt
   branches/gcmd-1-3/src/gnome-cmd-main-win.cc

Modified: branches/gcmd-1-3/NEWS
==============================================================================
--- branches/gcmd-1-3/NEWS	(original)
+++ branches/gcmd-1-3/NEWS	Mon Mar 23 17:41:51 2009
@@ -28,6 +28,8 @@
  * New or updated docs: de, en, es
  * New or updated translations: ar, cs, de, es, eu, fr, pl, pt_BR
  * New key bindings:
+      CTRL+E         Open the history list for the command line
+ * New key bindings:
       T              Show metadata tags (replaces the old E)
       ALT+ENTER      Show metadata tags
 

Modified: branches/gcmd-1-3/doc/C/gnome-commander.xml
==============================================================================
--- branches/gcmd-1-3/doc/C/gnome-commander.xml	(original)
+++ branches/gcmd-1-3/doc/C/gnome-commander.xml	Mon Mar 23 17:41:51 2009
@@ -4147,6 +4147,7 @@
         </row>
         <row valign="top">
             <entry><para><keycombo><keycap>CTRL</keycap><keycap>DOWN</keycap></keycombo></para>
+                   <para><keycombo><keycap>CTRL</keycap><keycap>E</keycap></keycombo></para>
                    <para><keycombo><keycap>ALT</keycap><keycap>F8</keycap></keycombo></para></entry>
             <entry><para>A list with the latest command lines (history list) is opened. Use the <keycombo><keycap>UP</keycap></keycombo>
             and <keycombo><keycap>DOWN</keycap></keycombo> cursor keys to select an entry.
@@ -5705,6 +5706,14 @@
                             <para>Build fixes</para>
                         </listitem>
                     </itemizedlist>
+                            <para>New key bindings:</para>
+                            <itemizedlist>
+                                <listitem>
+                                    <para><keycombo><keycap>CTRL</keycap><keycap>E</keycap></keycombo>   Open the history list for the command line</para>
+                                </listitem>
+                            </itemizedlist>
+                        </listitem>
+                        <listitem>
                 </para>
                 <para>New features:</para>
                 <para>

Modified: branches/gcmd-1-3/doc/keys.txt
==============================================================================
--- branches/gcmd-1-3/doc/keys.txt	(original)
+++ branches/gcmd-1-3/doc/keys.txt	Mon Mar 23 17:41:51 2009
@@ -131,7 +131,7 @@
                 Add the file name under the cursor including its path
                 to the end of the command line
 
-CTRL+DOWN or ALT+F8
+CTRL+DOWN or CTRL+E or ALT+F8
                 A list with the latest command lines (history list) is opened.
                 Use the UP and DOWN cursor keys to select an entry. By pressing
                 the LEFT or RIGHT key, you can edit the command line. This

Modified: branches/gcmd-1-3/src/gnome-cmd-main-win.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-main-win.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-main-win.cc	Mon Mar 23 17:41:51 2009
@@ -1003,6 +1003,8 @@
     {
         switch (event->keyval)
         {
+            case GDK_e:
+            case GDK_E:
             case GDK_Down:
                 if (gnome_cmd_data.cmdline_visibility)
                     gnome_cmd_cmdline_show_history (GNOME_CMD_CMDLINE (mw->priv->cmdline));



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