Explorar el Código

Support no suffix for link name

master
Arun Prakash Jana hace 6 años
padre
commit
2b79d237cc
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      src/nnn.c

+ 3
- 1
src/nnn.c Ver fichero

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



Cargando…
Cancelar
Guardar