| ts/zoompage/zoom/ - surf - customized build of surf, the suckless webkit browser | |
| git clone git://src.adamsgaard.dk/surf | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit d934d9c80b24debe4c0b6102ea0416c25a991c80 | |
| parent 124d3e89dd242042648a5615e3d975f085b1f0d5 | |
| Author: Enno Boland (tox) <[email protected]> | |
| Date: Mon, 7 Sep 2009 09:51:51 +0200 | |
| s/zoompage/zoom/ | |
| Diffstat: | |
| M config.h | 7 ++++--- | |
| M surf.c | 4 ++-- | |
| 2 files changed, 6 insertions(+), 5 deletions(-) | |
| --- | |
| diff --git a/config.h b/config.h | |
| t@@ -17,9 +17,10 @@ static Key keys[] = { | |
| { 0, GDK_Return, hideurl, {0}, URLBAR… | |
| { GDK_CONTROL_MASK, GDK_p, clipboard, {.b = TRUE }, BROWSE… | |
| { GDK_CONTROL_MASK, GDK_y, clipboard, {.b = FALSE}, BROWSE… | |
| - { GDK_CONTROL_MASK, GDK_plus, zoompage, {.i = +1 }, BROWSE… | |
| - { GDK_CONTROL_MASK, GDK_minus, zoompage, {.i = -1 }, BROWSE… | |
| - { GDK_CONTROL_MASK, GDK_0, zoompage, {.i = 0 }, BROWSE… | |
| + { GDK_CONTROL_MASK, GDK_equal, zoom, {.i = +1 }, BROWSE… | |
| + { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSE… | |
| + { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSE… | |
| + { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSE… | |
| { GDK_CONTROL_MASK, GDK_l, navigate, {.i = +1}, BROWSE… | |
| { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSE… | |
| { 0, GDK_Escape, stop, {0}, BROWSE… | |
| diff --git a/surf.c b/surf.c | |
| t@@ -108,7 +108,7 @@ static void stop(Client *c, const Arg *arg); | |
| static void titlechange(WebKitWebView* view, WebKitWebFrame* frame, const gcha… | |
| static void usage(); | |
| static void updatetitle(Client *c, const gchar *title); | |
| -static void zoompage(Client *c, const Arg *arg); | |
| +static void zoom(Client *c, const Arg *arg); | |
| #include "config.h" | |
| t@@ -563,7 +563,7 @@ updatetitle(Client *c, const char *title) { | |
| } | |
| void | |
| -zoompage(Client *c, const Arg *arg) { | |
| +zoom(Client *c, const Arg *arg) { | |
| if(arg->i < 0) /* zoom out */ | |
| webkit_web_view_zoom_out(c->view); | |
| else if(arg->i > 0) /* zoom in */ |