diff options
-rw-r--r-- | xxxterm.1 | 3 | ||||
-rw-r--r-- | xxxterm.c | 1 |
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 }, |