Ver código fonte

Retain a way to return to start dir if file opened

master
Arun Prakash Jana 3 anos atrás
pai
commit
16de133fea
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      src/nnn.c

+ 5
- 0
src/nnn.c Ver arquivo

@@ -5904,6 +5904,11 @@ static bool browse(char *ipath, const char *session, int pkey)
lastname = g_ctx[0].c_name; /* last visited filename */

xstrsncpy(g_ctx[0].c_path, ipath, PATH_MAX);
/* If the initial path is a file, retain a way to return to start dir */
if (g_state.initfile) {
free(initpath);
initpath = ipath = getcwd(NULL, 0);
}
path = g_ctx[0].c_path; /* current directory */

g_ctx[0].c_fltr[0] = g_ctx[0].c_fltr[1] = '\0';


Carregando…
Cancelar
Salvar