diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2018-04-25 05:04:37 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2018-04-25 05:40:07 +0530 |
commit | c27f58555e3d11527a1d66f69e3be7073367d4eb (patch) | |
tree | eaf2518b7bf05f096105fe207df1960cfe12f0ee /nnn.h | |
parent | 28f303699c7f82f41666d0e087f67cedf77d10cf (diff) | |
download | nnn-c27f58555e3d11527a1d66f69e3be7073367d4eb.tar.gz |
Support archive creation
Diffstat (limited to 'nnn.h')
-rw-r--r-- | nnn.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,7 @@ enum action { SEL_MEDIA, SEL_FMEDIA, SEL_DFB, + SEL_ARCHIVE, SEL_LIST, SEL_EXTRACT, SEL_FSIZE, @@ -137,6 +138,8 @@ static struct key bindings[] = { { 'M', SEL_FMEDIA, "-f", "" }, /* Open dir in desktop file manager */ { 'o', SEL_DFB, "", "" }, + /* Create archive */ + { 'f', SEL_ARCHIVE, "", "" }, /* List archive */ { 'F', SEL_LIST, "-l", "" }, /* Extract archive */ |