diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index c5c9ce1..943b8f3 100644 --- a/config.def.h +++ b/config.def.h @@ -3,6 +3,7 @@ #define CURSR " > " #define EMPTY " " +static int filtermode = 0; /* Set to 1 to enter filter mode */ static int mtimeorder = 0; /* Set to 1 to sort by time modified */ static int sizeorder = 0; /* Set to 1 to sort by file size */ static int bsizeorder = 0; /* Set to 1 to sort by blocks used including content */ @@ -35,6 +36,8 @@ static struct key bindings[] = { { 'l', SEL_GOIN, "", "" }, /* Filter */ { '/', SEL_FLTR, "", "" }, + /* Toggle filter mode */ + { 'f', SEL_MFLTR, "", "" }, /* Desktop search */ { CONTROL('_'), SEL_SEARCH, "", "" }, /* Next */ |