Navigate to first and last slide with 'g' and 'G', respectively. This resembles
the behavior of vi, that uses 'gg' and 'G' for the first and last lines in a
file. These keybinds are useful for keyboards without dedicated home/end keys.
quit *q*
reload *r*
slide N *1..9*
-first slide *Home*
-last slide *End*
+first slide *Home*, *g*
+last slide *End*, *G*
-------------------------------------------------
break;
// show first slide
+ case 'g':
case KEY_HOME:
slide = deck->slide;
sc = 1;
break;
// show last slide
+ case 'G':
case KEY_END:
for(i = sc; i <= deck->slides; i++) {
if(slide->next) {