Often I am waiting for a file to download and be renamed from
.foo.part to .foo. Forcing a redraw is a simple way to check if
the file has completed downloading.
{ 'c', SEL_CD },
/* Toggle sort by time */
{ 't', SEL_MTIME },
+ { CONTROL('L'), SEL_REDRAW },
};
Change into the given directory.
.It Ic t
Toggle sort by time modified.
+.It Ic l
+Force a redraw.
.It Ic !
Spawn shell in current directory.
.It Ic q
SEL_SH,
SEL_CD,
SEL_MTIME,
+ SEL_REDRAW,
};
struct key {
case SEL_MTIME:
mtimeorder = !mtimeorder;
goto out;
+ case SEL_REDRAW:
+ goto out;
}
}