about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--xxxterm.14
-rw-r--r--xxxterm.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/xxxterm.1 b/xxxterm.1
index afadb10..b78c082 100644
--- a/xxxterm.1
+++ b/xxxterm.1
@@ -206,6 +206,8 @@ Page left
 Page far right
 .It Cm 0
 Page far left
+.It Cm S-f
+Favorites
 .El
 .Pp
 Tab Manipulation:
@@ -223,7 +225,7 @@ Shrink font size by one point.
 Grow font size by one point.
 .El
 .Pp
-Mouse-less browsing:
+Mouse-less browsing (a.k.a. link following):
 .Pp
 .Bl -tag -width "tabnew, tabedit, tabe [URI]" -offset indent -compact
 .It Cm f
diff --git a/xxxterm.c b/xxxterm.c
index bc6996e..8c11b0e 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -1238,6 +1238,7 @@ struct key {
 	{ 0,			0,	GDK_F5,		navaction,	{.i = XT_NAV_RELOAD} },
 	{ GDK_CONTROL_MASK,	0,	GDK_r,		navaction,	{.i = XT_NAV_RELOAD} },
 	{ GDK_CONTROL_MASK,	0,	GDK_l,		navaction,	{.i = XT_NAV_RELOAD} },
+	{ GDK_SHIFT_MASK,	0,	GDK_F,		favorites,	{0} },
 
 	/* vertical movement */
 	{ 0,			0,	GDK_j,		move,		{.i = XT_MOVE_DOWN} },