| <kbd>></kbd>, <kbd>.</kbd> | Go to next active context |
| <kbd><</kbd>, <kbd>,</kbd> | Go to previous active context |
| key | Go to bookmarked location |
+| <kbd>'</kbd> | Go to first file in directory |
| <kbd>~</kbd> <kbd>`</kbd> <kbd>@</kbd> <kbd>-</kbd> | Go to HOME, `/`, start, last visited dir |
| <kbd>q</kbd> | Quit context |
case '@':
presel = fd;
goto nochange;
+ case '\'':
+ for (r = 0; r < ndents; ++r) {
+ if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) {
+ move_cursor((r) % ndents, 0);
+ break;
+ }
+ }
+ if (r != ndents)
+ continue;;
+ goto nochange;
case '>': // fallthrough
case '.': // fallthrough
case '<': // fallthrough