gnome-commander r2489 - in trunk: . doc doc/C src
- From: epiotr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-commander r2489 - in trunk: . doc doc/C src
- Date: Mon, 23 Mar 2009 17:41:36 +0000 (UTC)
Author: epiotr
Date: Mon Mar 23 17:41:35 2009
New Revision: 2489
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=2489&view=rev
Log:
Added shortcut CTRL+E to command line history list
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/doc/C/gnome-commander.xml
trunk/doc/keys.txt
trunk/src/gnome-cmd-main-win.cc
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Mon Mar 23 17:41:35 2009
@@ -27,6 +27,8 @@
* New colour theme: cafezinho
* New or updated docs: de, en, es
* New or updated translations: ar, cs, de, es, eu, fr, pl, pt_BR, sv
+ * New key bindings:
+ CTRL+E Open the history list for the command line
* New internal viewer key bindings:
T Show metadata tags (replaces the old E)
ALT+ENTER Show metadata tags
Modified: trunk/doc/C/gnome-commander.xml
==============================================================================
--- trunk/doc/C/gnome-commander.xml (original)
+++ trunk/doc/C/gnome-commander.xml Mon Mar 23 17:41:35 2009
@@ -4414,6 +4414,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.
@@ -5972,6 +5973,14 @@
<para>New or updated translations: ar, cs, de, es, eu, fr, pl, pt_BR, sv</para>
</listitem>
<listitem>
+ <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>New internal viewer key bindings:</para>
<itemizedlist>
<listitem>
Modified: trunk/doc/keys.txt
==============================================================================
--- trunk/doc/keys.txt (original)
+++ trunk/doc/keys.txt Mon Mar 23 17:41:35 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: trunk/src/gnome-cmd-main-win.cc
==============================================================================
--- trunk/src/gnome-cmd-main-win.cc (original)
+++ trunk/src/gnome-cmd-main-win.cc Mon Mar 23 17:41:35 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]