diff options
author | lostd <lostd@2f30.org> | 2015-02-01 14:10:28 +0200 |
---|---|---|
committer | lostd <lostd@2f30.org> | 2015-02-01 14:10:28 +0200 |
commit | cefb945e35c39f98cbbdb3926155bcd2ecd287f4 (patch) | |
tree | 236b788e5ead8781b109bd55de5b68b6a63fd2d4 | |
parent | c2e82550f7597212fd9837a69c116d81ebdc2199 (diff) | |
download | nnn-cefb945e35c39f98cbbdb3926155bcd2ecd287f4.tar.gz |
Meaningful comments
-rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 3b12199..f3f6a48 100644 --- a/config.def.h +++ b/config.def.h @@ -27,7 +27,7 @@ struct key bindings[] = { /* Filter */ { '/', SEL_FLTR }, { '&', SEL_FLTR }, - /* Type */ + /* Filter as you type */ { '?', SEL_TYPE }, /* Next */ { 'j', SEL_NEXT }, @@ -47,5 +47,6 @@ struct key bindings[] = { { '!', SEL_SH }, /* Change dir */ { 'c', SEL_CD }, + /* Sort by time */ { 't', SEL_MTIME }, }; |