My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG 2.3 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. nnn v1.0
  2. 2017-04-13
  3. Modifications
  4. - Behaviour and navigation
  5. - Detail view (default: disabled) with:
  6. - file type (directory, regular, symlink etc.)
  7. - modification time
  8. - human-readable file size
  9. - current item in reverse video
  10. - number of items in current directory
  11. - full name of currently selected file in 'bar'
  12. - Show details of the currently selected file (stat, file)
  13. - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
  14. - Directories first (even with sorting)
  15. - Sort numeric names in numeric order
  16. - Case-insensitive alphabetic content listing instead of upper case first
  17. - Key `-` to jump to last visited directory
  18. - Roll over at the first and last entries of a directory (with Up/Down keys)
  19. - Removed navigation restriction with relative paths (and let permissions handle it)
  20. - Sort entries by file size (largest to smallest)
  21. - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
  22. - File association
  23. - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
  24. export NNN_OPENER=xdg-open
  25. export NNN_OPENER=gnome-open
  26. export NNN_OPENER=gvfs-open
  27. - Selective file associations (ignored if `NNN_OPENER` is set):
  28. - Associate plain text files (determined using file) with vi
  29. - Associate common audio and video mimes with mpv
  30. - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
  31. - Removed `less` as default file opener (there is no universal standalone opener utility)
  32. - You can customize further (see [how to change file associations](#change-file-associations))
  33. - `NNN_FALLBACK_OPENER` is the last line of defense:
  34. - If the executable in static file association is missing
  35. - If a file type was not handled in static file association
  36. - This may be the best option to set your desktop opener to
  37. - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
  38. export NNN_DE_FILE_MANAGER=thunar
  39. - Optimization
  40. - All redundant buffer removal
  41. - All frequently used local chunks now static
  42. - Removed some redundant string allocation and manipulation
  43. - Simplified some roundabout procedures
  44. - Compiler warnings fixed
  45. - strip the final binary
  46. -------------------------------------------------------------------------------