adjust command mode key.
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 16 Aug 2012 03:50:01 +0000 (03:50 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 16 Aug 2012 03:50:01 +0000 (03:50 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/terminology@75302 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

README
src/bin/termio.c

diff --git a/README b/README
index 7c3aa00..14e7039 100644 (file)
--- a/README
+++ b/README
@@ -52,7 +52,14 @@ Shift+Keypad-Plus = Font size up 1
 Shift+Keypad-Minus = Font size down 1
 Shift+Keypad-Multiply = Reset font size to 10
 Shift+Keypad-Divide = Copy highlight to Clipboard (same as ctrl+c in gui apps)
-Alt+backtick(grave) = Enter command mode
+Alt+Home = Enter command mode (enter commands to control terminology itself)
+
+Command mode commands currently understood:
+
+f = Reset font to default settign saved in config
+f+ = Increase fontsize
+f- = Decreate fontsize
+fb = Display big font size (10x20 bitmap, or size 20 with scalable).
 
 Mouse controls:
 
index 77281f0..23c34d1 100644 (file)
@@ -850,7 +850,7 @@ _smart_cb_key_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
    if ((evas_key_modifier_is_set(ev->modifiers, "Alt")) &&
        (!evas_key_modifier_is_set(ev->modifiers, "Shift")) &&
        (!evas_key_modifier_is_set(ev->modifiers, "Control")) &&
-       (!strcmp(ev->keyname, "grave")))
+       (!strcmp(ev->keyname, "Home")))
      {
         evas_object_smart_callback_call(data, "cmdbox", NULL);
         goto end;