My build of nnn with minor changes
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. nnn v1.1
  2. 2017-05-12
  3. News
  4. - Introducing nlay - a highly customizable bash script to handle media type
  5. - nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
  6. - RPM packages for CentOS 7 and Fedora 24 generated on release
  7. What's in?
  8. - *Search-as-you-type*
  9. - Unicode support
  10. - Option `-S` to start in disk usage analyzer mode
  11. - Show media information (using mediainfo)
  12. - Use readline at change directory prompt
  13. - Jump to prev directories using `cd .....` (with `.` as PWD)
  14. - Jump to initial directory using `&`
  15. - Show help, mediainfo and file info in PAGER
  16. - Several optimizations
  17. -------------------------------------------------------------------------------
  18. nnn v1.0
  19. 2017-04-13
  20. Modifications
  21. - Behaviour and navigation
  22. - Detail view (default: disabled) with:
  23. - file type (directory, regular, symlink etc.)
  24. - modification time
  25. - human-readable file size
  26. - current item in reverse video
  27. - number of items in current directory
  28. - full name of currently selected file in 'bar'
  29. - Show details of the currently selected file (stat, file)
  30. - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
  31. - Directories first (even with sorting)
  32. - Sort numeric names in numeric order
  33. - Case-insensitive alphabetic content listing instead of upper case first
  34. - Key `-` to jump to last visited directory
  35. - Roll over at the first and last entries of a directory (with Up/Down keys)
  36. - Removed navigation restriction with relative paths (and let permissions handle it)
  37. - Sort entries by file size (largest to smallest)
  38. - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
  39. - File association
  40. - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
  41. export NNN_OPENER=xdg-open
  42. export NNN_OPENER=gnome-open
  43. export NNN_OPENER=gvfs-open
  44. - Selective file associations (ignored if `NNN_OPENER` is set):
  45. - Associate plain text files (determined using file) with vi
  46. - Associate common audio and video mimes with mpv
  47. - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
  48. - Removed `less` as default file opener (there is no universal standalone opener utility)
  49. - You can customize further (see [how to change file associations](#change-file-associations))
  50. - `NNN_FALLBACK_OPENER` is the last line of defense:
  51. - If the executable in static file association is missing
  52. - If a file type was not handled in static file association
  53. - This may be the best option to set your desktop opener to
  54. - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
  55. export NNN_DE_FILE_MANAGER=thunar
  56. - Optimization
  57. - All redundant buffer removal
  58. - All frequently used local chunks now static
  59. - Removed some redundant string allocation and manipulation
  60. - Simplified some roundabout procedures
  61. - Compiler warnings fixed
  62. - strip the final binary
  63. -------------------------------------------------------------------------------