1
1
mirror of https://github.com/jarun/nnn.git synced 2024-09-22 02:18:04 +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 */
{ '/', 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 },
};