Browse Source

Support no suffix for link name

master
Arun Prakash Jana 6 years ago
parent
commit
2b79d237cc
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/nnn.c

+ 3
- 1
src/nnn.c View File

@@ -3395,7 +3395,7 @@ nochange:
tmp = xreadline(NULL, "open with: ");
break;
case SEL_NEW:
tmp = xreadline(NULL, "name/link suffix: ");
tmp = xreadline(NULL, "name/link suffix [@ for no suffix]: ");
break;
default: /* SEL_RENAME */
tmp = xreadline(dents[cur].name, "");
@@ -3494,6 +3494,8 @@ nochange:
} else if (r == 'd') {
r = mkdirat(fd, tmp, 0777);
} else if (r == 's' || r == 'h') {
if (tmp[0] == '@' && tmp[1] == '\0')
tmp[0] = '\0';
r = xlink(tmp, path, newpath, r);
close(fd);



Loading…
Cancel
Save