Explorar el Código

Show file size in status bar

master
Arun Prakash Jana hace 6 años
padre
commit
99840a6fa3
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 3 borrados
  1. +3
    -3
      src/nnn.c

+ 3
- 3
src/nnn.c Ver fichero

@@ -3373,11 +3373,11 @@ static void redraw(char *path)
base = unescape(pent->name, NAME_MAX, NULL);

/* Timestamp */
strftime(buf, 18, "%d/%b/%Y %R", localtime(&pent->t));
strftime(buf, 18, "%Y/%b/%d %R", localtime(&pent->t));

mvprintw(lastln, 0, "%d/%d (%d) %s%s%s %s %s [%s]\n",
mvprintw(lastln, 0, "%d/%d (%d) %s%s%s %s %s %s [%s]\n",
cur + 1, ndents, nselected, selmode, sort, buf,
get_lsperms(pent->mode), ptr, base);
get_lsperms(pent->mode), coolsize(pent->size), ptr, base);
}
} else
printmsg("0/0");


Cargando…
Cancelar
Guardar