about summary refs log tree commit diff
path: root/config.def.h
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-12-02 22:41:18 +0100
committerChristoph Lohmann <20h@r-36.net>2012-12-02 22:41:18 +0100
commite96f191088efd2f687aeaa1903bd9b3c8133e1af (patch)
tree7cb1d2a7c269ad1d0aead654d37bfb9fc02fd27d /config.def.h
parentSurf now can handle absolute file paths. This allows better local HTML (diff)
downloadsurf-e96f191088efd2f687aeaa1903bd9b3c8133e1af.tar.gz
surf-e96f191088efd2f687aeaa1903bd9b3c8133e1af.tar.bz2
surf-e96f191088efd2f687aeaa1903bd9b3c8133e1af.zip
Making zoom available when used in tabbed.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 362e1d2..57bf31e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -51,6 +51,8 @@ static Key keys[] = {
     { MODKEY|GDK_SHIFT_MASK,GDK_j,      zoom,       { .i = -1 } },
     { MODKEY|GDK_SHIFT_MASK,GDK_k,      zoom,       { .i = +1 } },
     { MODKEY|GDK_SHIFT_MASK,GDK_i,      zoom,       { .i = 0  } },
+    { MODKEY,               GDK_minus,  zoom,       { .i = -1 } },
+    { MODKEY,               GDK_plus,   zoom,       { .i = +1 } },
     { MODKEY,               GDK_l,      navigate,   { .i = +1 } },
     { MODKEY,               GDK_h,      navigate,   { .i = -1 } },
     { MODKEY,               GDK_j,           scroll_v,   { .i = +1 } },