diff options
author | Todd Fries <todd@fries.net> | 2010-02-24 16:44:13 +0000 |
---|---|---|
committer | Todd Fries <todd@fries.net> | 2010-02-24 16:44:13 +0000 |
commit | 4a4eea09f338713e82b096e864fc99f36185ebb1 (patch) | |
tree | 95c2122ba3337482da5a88cdc907bdbb5a5eda36 | |
parent | c4dd8b11438c731c5465d9ede1db1d97dfdf5874 (diff) | |
download | xombrero-4a4eea09f338713e82b096e864fc99f36185ebb1.tar.gz |
two more vi keybindings, ok marco@
-rw-r--r-- | xxxterm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xxxterm.c b/xxxterm.c index 2c4a1ca..461d942 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -663,8 +663,10 @@ struct key { { 0, 0, GDK_Home, move, {.i = XT_MOVE_TOP} }, { 0, GDK_g, GDK_g, move, {.i = XT_MOVE_TOP} }, /* XXX make this work */ { 0, 0, GDK_space, move, {.i = XT_MOVE_PAGEDOWN} }, + { GDK_CONTROL_MASK, 0, GDK_f, move, {.i = XT_MOVE_PAGEDOWN} }, { 0, 0, GDK_Page_Down, move, {.i = XT_MOVE_PAGEDOWN} }, { 0, 0, GDK_Page_Up, move, {.i = XT_MOVE_PAGEUP} }, + { GDK_CONTROL_MASK, 0, GDK_b, move, {.i = XT_MOVE_PAGEUP} }, /* horizontal movement */ { 0, 0, GDK_l, move, {.i = XT_MOVE_RIGHT} }, { 0, 0, GDK_Right, move, {.i = XT_MOVE_RIGHT} }, |