mirror of
https://github.com/jarun/nnn.git
synced 2024-12-01 02:49:44 +00:00
Drop ^T, no reload after empty cmd at prompt
This commit is contained in:
parent
c1f168c7cb
commit
8955d039c6
|
@ -3494,7 +3494,7 @@ static void show_help(const char *path)
|
||||||
"cv version%-17cE Extension\n"
|
"cv version%-17cE Extension\n"
|
||||||
"1MISC\n"
|
"1MISC\n"
|
||||||
"9! ^] Shell%-17c; x Execute plugin\n"
|
"9! ^] Shell%-17c; x Execute plugin\n"
|
||||||
"9] ^T Cmd prompt%-13c^P Pick plugin\n"
|
"c] Cmd prompt%-13c^P Pick plugin\n"
|
||||||
"cs Manage session%-10c= Launch app\n"
|
"cs Manage session%-10c= Launch app\n"
|
||||||
"cc Connect remote%-10cu Unmount\n"
|
"cc Connect remote%-10cu Unmount\n"
|
||||||
};
|
};
|
||||||
|
@ -5341,6 +5341,8 @@ nochange:
|
||||||
#endif
|
#endif
|
||||||
if (tmp && *tmp) // NOLINT
|
if (tmp && *tmp) // NOLINT
|
||||||
prompt_run(tmp, (ndents ? dents[cur].name : ""), path);
|
prompt_run(tmp, (ndents ? dents[cur].name : ""), path);
|
||||||
|
else
|
||||||
|
goto nochange;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Continue in navigate-as-you-type mode, if enabled */
|
/* Continue in navigate-as-you-type mode, if enabled */
|
||||||
|
|
|
@ -243,7 +243,6 @@ static struct key bindings[] = {
|
||||||
{ '=', SEL_LAUNCH },
|
{ '=', SEL_LAUNCH },
|
||||||
/* Run a command */
|
/* Run a command */
|
||||||
{ ']', SEL_RUNCMD },
|
{ ']', SEL_RUNCMD },
|
||||||
{ CONTROL('T'), SEL_RUNCMD },
|
|
||||||
/* Open in EDITOR or PAGER */
|
/* Open in EDITOR or PAGER */
|
||||||
{ 'e', SEL_RUNEDIT },
|
{ 'e', SEL_RUNEDIT },
|
||||||
{ 'p', SEL_RUNPAGE },
|
{ 'p', SEL_RUNPAGE },
|
||||||
|
|
Loading…
Reference in a new issue