1
1
mirror of https://github.com/jarun/nnn.git synced 2024-11-11 14:44:20 +03:00

Meaningful comments

This commit is contained in:
lostd 2015-02-01 14:10:28 +02:00
parent c2e82550f7
commit cefb945e35

View File

@ -27,7 +27,7 @@ struct key bindings[] = {
/* Filter */ /* Filter */
{ '/', SEL_FLTR }, { '/', SEL_FLTR },
{ '&', SEL_FLTR }, { '&', SEL_FLTR },
/* Type */ /* Filter as you type */
{ '?', SEL_TYPE }, { '?', SEL_TYPE },
/* Next */ /* Next */
{ 'j', SEL_NEXT }, { 'j', SEL_NEXT },
@ -47,5 +47,6 @@ struct key bindings[] = {
{ '!', SEL_SH }, { '!', SEL_SH },
/* Change dir */ /* Change dir */
{ 'c', SEL_CD }, { 'c', SEL_CD },
/* Sort by time */
{ 't', SEL_MTIME }, { 't', SEL_MTIME },
}; };