Change dir before readline()

This commit is contained in:
Arun Prakash Jana 2019-01-27 15:11:45 +05:30
parent d47be4e89b
commit 2669278a31
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 14 additions and 0 deletions

View File

@ -3709,8 +3709,22 @@ nochange:
break;
default: /* SEL_RUNCMD */
exitcurses();
/* Switch to current path for readline(3) */
if (chdir(path) == -1) {
printwarn();
goto nochange;
}
tmp = readline("nnn> ");
if (chdir(ipath) == -1) {
printwarn();
goto nochange;
}
refresh();
if (tmp && tmp[0]) {
spawn(shell, "-c", tmp, path, F_NORMAL | F_SIGINT);
add_history(tmp);