Use the ^ to scroll to the absolute left of the document like
pentadactyl does.
Scroll to the bottom of the current page.
Or if \fIN\fP is given to \fIN\fP% of the page.
.TP
-.BI [ N ]0
-Scroll \fIN\fP steps to the left of current page.
+.B 0, ^
+Scroll to the absolute left of the document.
+Unlike in Vim, 0 and ^ work exactly the same way.
.TP
-.BI [ N ]$
-Scroll \fIN\fP steps to the right of current page.
+.B $
+Scroll to the absolute right of the document.
.TP
.BI [ N ]h
Scroll \fIN\fP steps to the left of page.
/* [ 0x5b */ {normal_prevnext},
/* \ 0x5c */ {NULL},
/* ] 0x5d */ {normal_prevnext},
-/* ^ 0x5e */ {NULL},
+/* ^ 0x5e */ {normal_scroll},
/* _ 0x5f */ {NULL},
/* ` 0x60 */ {NULL},
/* a 0x61 */ {NULL},
/* save the position to mark ' */
vb.state.marks[VB_MARK_TICK] = gtk_adjustment_get_value(adjust);
break;
- case '0':
+ case '0': /* fall through */
+ case '^':
adjust = vb.gui.adjust_h;
new = gtk_adjustment_get_lower(adjust);
break;