pinosaur
/
surf.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9f3583
)
changing back/forward buttons
author
Enno Boland (tox)
<tox@s01.de>
Sun, 6 Sep 2009 08:56:09 +0000
(10:56 +0200)
committer
Enno Boland (tox)
<tox@s01.de>
Sun, 6 Sep 2009 08:56:09 +0000
(10:56 +0200)
surf.1
patch
|
blob
|
history
surf.c
patch
|
blob
|
history
diff --git
a/surf.1
b/surf.1
index
1964acf
..
98cb0ce
100644
(file)
--- a/
surf.1
+++ b/
surf.1
@@
-35,10
+35,10
@@
Prints xid to standard output. This can be used to script the browser by using
.BR xprop(1).
.SH USAGE
.TP
-.B Ctrl\-
Left
+.B Ctrl\-
h
Walks back the history.
.TP
-.B Ctrl\-
Right
+.B Ctrl\-
l
Walks forward the history.
.TP
.B Ctrl\-/
diff --git
a/surf.c
b/surf.c
index
a5e0d28
..
89987a8
100644
(file)
--- a/
surf.c
+++ b/
surf.c
@@
-236,10
+236,10
@@
keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
!(ev->state & GDK_SHIFT_MASK),
TRUE);
return TRUE;
- case GDK_
Left
:
+ case GDK_
h
:
webkit_web_view_go_back(c->view);
return TRUE;
- case GDK_
Right
:
+ case GDK_
l
:
webkit_web_view_go_forward(c->view);
return TRUE;
}