about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichal Mazurek <akfaew@jasminek.net>2011-08-02 17:06:35 +0000
committerMichal Mazurek <akfaew@jasminek.net>2011-08-02 17:06:35 +0000
commit4caf033695aa2b04ef41e5a14ead523e3b9935bd (patch)
treeac13737d3323eebc8fa6fb9ebfc454ccf7081139
parentecb2cfe1978a39a7c7bec8523f69f01639bf0d32 (diff)
downloadxombrero-4caf033695aa2b04ef41e5a14ead523e3b9935bd.tar.gz
restore scrollfarleft bound to 0
update manpage

ok marko
-rw-r--r--xxxterm.13
-rw-r--r--xxxterm.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/xxxterm.1 b/xxxterm.1
index ad5dcfd..1bdc7d5 100644
--- a/xxxterm.1
+++ b/xxxterm.1
@@ -551,6 +551,9 @@ buffer command. In the following list
 .Cm arg
 denotes the argument a buffer command accepts. Buffer commands are
 defined as extended regular experssions.
+Note that if a character is used as a shortcut it will not be interpreted
+as the beginning of a buffer command. This is the case with
+.Cm 0 .
 .Pp
 .Bl -tag -width "[`'][a-zA-Z0-9]XXX" -offset indent -compact
 .It Cm gg
diff --git a/xxxterm.c b/xxxterm.c
index 4e31ffb..5499104 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -4948,6 +4948,7 @@ struct key_binding {
 	{ "scrollleft",		0,	0,	GDK_Left	},
 	{ "scrollleft",		0,	0,	GDK_h		},
 	{ "scrollfarright",	0,	0,	GDK_dollar	},
+	{ "scrollfarleft",	0,	0,	GDK_0		},
 
 	/* tabs */
 	{ "tabnew",		CTRL,	0,	GDK_t		},