浏览代码

Add comments

master
Arun Prakash Jana 6 年前
父节点
当前提交
aa9c7bac23
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      src/nnn.c

+ 4
- 1
src/nnn.c 查看文件

@@ -3244,6 +3244,7 @@ nochange:
goto nochange; goto nochange;
} }


/* Confirm if app is CLI or GUI */
if (sel == SEL_OPEN || sel == SEL_LAUNCH) { if (sel == SEL_OPEN || sel == SEL_LAUNCH) {
r = get_input("press 'c' for cli mode"); r = get_input("press 'c' for cli mode");
(r == 'c') ? (r = F_NORMAL) : (r = F_NOWAIT | F_NOTRACE); (r == 'c') ? (r = F_NORMAL) : (r = F_NOWAIT | F_NOTRACE);
@@ -3297,6 +3298,7 @@ nochange:
break; break;
} }


/* Complete OPEN, LAUNCH, ARCHIVE operations */
if (sel != SEL_NEW && sel != SEL_RENAME) { if (sel != SEL_NEW && sel != SEL_RENAME) {
/* Continue in navigate-as-you-type mode, if enabled */ /* Continue in navigate-as-you-type mode, if enabled */
if (cfg.filtermode) if (cfg.filtermode)
@@ -3319,12 +3321,13 @@ nochange:
/* Check if another file with same name exists */ /* Check if another file with same name exists */
if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) { if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) {
if (sel == SEL_RENAME) { if (sel == SEL_RENAME) {
/* File with the same name exists */ /* Overwrite file with same name? */
if (get_input("press 'y' to overwrite") != 'y') { if (get_input("press 'y' to overwrite") != 'y') {
close(fd); close(fd);
break; break;
} }
} else { } else {
/* Do nothing in case of NEW */
close(fd); close(fd);
printmsg("entry exists"); printmsg("entry exists");
goto nochange; goto nochange;


||||||
x
 
000:0
正在加载...
取消
保存