diff options
| -rw-r--r-- | config.def.h | 1 | ||||
| -rw-r--r-- | noice.1 | 2 | ||||
| -rw-r--r-- | noice.c | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index a7e5ffc..45e9d5b 100644 --- a/config.def.h +++ b/config.def.h @@ -51,4 +51,5 @@ struct key bindings[] = { { 'c', SEL_CD }, /* Toggle sort by time */ { 't', SEL_MTIME }, + { CONTROL('L'), SEL_REDRAW }, }; @@ -49,6 +49,8 @@ Enter filter-as-you-type mode. 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 @@ -57,6 +57,7 @@ enum action { SEL_SH, SEL_CD, SEL_MTIME, + SEL_REDRAW, }; struct key { @@ -817,6 +818,8 @@ moretyping: case SEL_MTIME: mtimeorder = !mtimeorder; goto out; + case SEL_REDRAW: + goto out; } } |