소스 검색

Retain a way to return to start dir if file opened

master
Arun Prakash Jana 3 년 전
부모
커밋
16de133fea
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      src/nnn.c

+ 5
- 0
src/nnn.c 파일 보기

@@ -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';


불러오는 중...
취소
저장