Browse Source

Combine list, edit selection. Key ^Y

master
Arun Prakash Jana 4 years ago
parent
commit
3d7cc30441
No known key found for this signature in database GPG Key ID: A75979F35C080412
2 changed files with 22 additions and 19 deletions
  1. +21
    -15
      src/nnn.c
  2. +1
    -4
      src/nnn.h

+ 21
- 15
src/nnn.c View File

@@ -474,6 +474,7 @@ static char * const utils[] = {
#define MSG_BOOKMARK_KEYS 36 #define MSG_BOOKMARK_KEYS 36
#define MSG_INVALID_REG 37 #define MSG_INVALID_REG 37
#define MSG_ORDER 38 #define MSG_ORDER 38
#define MSG_EDIT_SEL 39


static const char * const messages[] = { static const char * const messages[] = {
"no traversal", "no traversal",
@@ -515,6 +516,7 @@ static const char * const messages[] = {
"bookmark keys:", "bookmark keys:",
"invalid regex", "invalid regex",
"toggle 'a'u / 'd'u / 'e'xtn / 'r'everse / 's'ize / 't'ime / 'v'ersion?", "toggle 'a'u / 'd'u / 'e'xtn / 'r'everse / 's'ize / 't'ime / 'v'ersion?",
"edit sel?",
}; };


/* Supported configuration environment variables */ /* Supported configuration environment variables */
@@ -3609,8 +3611,7 @@ static void show_help(const char *path)
"cP Copy sel here%-11ca Select all\n" "cP Copy sel here%-11ca Select all\n"
"cV Move sel here%-10c^V Copy/move sel as\n" "cV Move sel here%-10c^V Copy/move sel as\n"
"cX Delete sel%-13c^X Delete entry\n" "cX Delete sel%-13c^X Delete entry\n"
"cy List sel%-15c^Y Edit sel\n"
"9o ^T Order toggle%-0c\n"
"9o ^T Order toggle%-11c^Y List, edit sel\n"
"1MISC\n" "1MISC\n"
"9! ^] Shell%-16c; ^F Fire plugin\n" "9! ^] Shell%-16c; ^F Fire plugin\n"
"c] Cmd prompt%-13c^P Pick plugin\n" "c] Cmd prompt%-13c^P Pick plugin\n"
@@ -5223,23 +5224,28 @@ nochange:
plugscript(utils[UTIL_CBCP], newpath, F_NOWAIT | F_NOTRACE); plugscript(utils[UTIL_CBCP], newpath, F_NOWAIT | F_NOTRACE);
continue; continue;
case SEL_SELLIST: case SEL_SELLIST:
if (listselbuf() || listselfile()) {
if (cfg.filtermode)
presel = FILTER;
break;
if (!listselbuf() && !listselfile()) {
printwait(messages[MSG_0_SELECTED], &presel);
goto nochange;
} }
printwait(messages[MSG_0_SELECTED], &presel);
goto nochange;
case SEL_SELEDIT:

r = get_input(messages[MSG_EDIT_SEL]);
if (r != 'y' && r != 'Y') {
cfg.filtermode ? presel = FILTER : statusbar(path);
goto nochange;
}

r = editselection(); r = editselection();
if (r <= 0) {
const char *msg
= (!r ? messages[MSG_0_SELECTED] : messages[MSG_FAILED]);
printwait(msg, &presel);
if (r <= 0) { /* Cannot be equal to 0 though as listing guards */
printwait(messages[MSG_FAILED], &presel);
goto nochange; goto nochange;
} else if (cfg.x11)
}

if (cfg.x11)
plugscript(utils[UTIL_CBCP], newpath, F_NOWAIT | F_NOTRACE); plugscript(utils[UTIL_CBCP], newpath, F_NOWAIT | F_NOTRACE);
break;

cfg.filtermode ? presel = FILTER : statusbar(path);
goto nochange;
case SEL_CP: // fallthrough case SEL_CP: // fallthrough
case SEL_MV: // fallthrough case SEL_MV: // fallthrough
case SEL_CPMVAS: // fallthrough case SEL_CPMVAS: // fallthrough


+ 1
- 4
src/nnn.h View File

@@ -73,7 +73,6 @@ enum action {
SEL_SELMUL, SEL_SELMUL,
SEL_SELALL, SEL_SELALL,
SEL_SELLIST, SEL_SELLIST,
SEL_SELEDIT,
SEL_CP, SEL_CP,
SEL_MV, SEL_MV,
SEL_CPMVAS, SEL_CPMVAS,
@@ -191,10 +190,8 @@ static struct key bindings[] = {
{ CONTROL('K'), SEL_SELMUL }, { CONTROL('K'), SEL_SELMUL },
/* Select all files in current dir */ /* Select all files in current dir */
{ 'a', SEL_SELALL }, { 'a', SEL_SELALL },
/* Show list of copied files */
/* List, edit selection */
{ 'y', SEL_SELLIST }, { 'y', SEL_SELLIST },
/* Edit selection buffer */
{ CONTROL('Y'), SEL_SELEDIT },
/* Copy from selection buffer */ /* Copy from selection buffer */
{ 'P', SEL_CP }, { 'P', SEL_CP },
/* Move from selection buffer */ /* Move from selection buffer */


Loading…
Cancel
Save