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.
 
 
 
 
 
 

173 lines
6.6 KiB

  1. nnn v1.7
  2. 2018-02-nn
  3. What's in?
  4. - Copy multiple file paths
  5. - Copy file paths when X is unavailable
  6. - Optionally quote individual file paths with single quotes on copy
  7. - Batch rename files in vidir from [moreutils](https://joeyh.name/code/moreutils/)
  8. - Use ISO 8601 date format in file details
  9. - New/changed/remapped shortcuts:
  10. - <kbd>^B</kbd> - show bookmark prompt (replaces <kbd>b</kbd>)
  11. - <kbd>b</kbd> - pin current dir (replaces <kbd>^B</kbd>)
  12. - <kbd>^J</kbd> - toggle du mode
  13. - <kbd>R</kbd> - batch rename files in vidir
  14. - <kbd>^F</kbd> - extract archive (replaces <kbd>^X</kbd>)
  15. - <kbd>^X</kbd> - quit nnn (replaces <kbd>^Q</kbd>)
  16. - Extra shortcuts enabled in nav-as-you-type mode:
  17. - <kbd>^K</kbd>, <kbd>^Y</kbd> (file path copy)
  18. - <kbd>^T</kbd> (toggles quoted file path copy)
  19. - <kbd>^R</kbd> (rename)
  20. - <kbd>^O</kbd> (open with...)
  21. - <kbd>^B</kbd> (show bookmark prompt)
  22. - <kbd>^V</kbd> (visit pinned dir)
  23. - <kbd>^J</kbd> (toggle du mode)
  24. - <kbd>^/</kbd> (open desktop opener)
  25. - <kbd>^F</kbd> (extract archive)
  26. - <kbd>^L</kbd> (refresh)
  27. - <kbd>^X</kbd> (quit nnn)
  28. -------------------------------------------------------------------------------
  29. nnn v1.6
  30. 2017-12-25
  31. What's in?
  32. - Shortcut `^O` to open file with custom application
  33. - Option `-b` to open bookmarks directly at start
  34. - Huge performance improvements around file name storing and handling
  35. - Several large static buffers removed or reduced
  36. - Several internal algorithms fine tuned for performance/resource usage
  37. -------------------------------------------------------------------------------
  38. nnn v1.5
  39. 2017-10-05
  40. What's in?
  41. - File and directory creation (`n`)
  42. - Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
  43. - Show current entry number in status bar
  44. - Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
  45. - Show correct file size on i386 for large files (> 2GB)
  46. -------------------------------------------------------------------------------
  47. nnn v1.4
  48. 2017-09-04
  49. What's in?
  50. - Monitor directory changes
  51. - In-place file rename
  52. - Pin (`Ctrl-B`) a directory and visit (`Ctrl-V`) it anytime
  53. - Auto-completion scripts
  54. - Show volume capacity and free in help
  55. - Auto-fallback to light mode if too few columns (< 35)
  56. - PackageCore integration
  57. - Unsupported Function keys (they never work universally):
  58. - `F2` (rename), use `Ctrl-R`
  59. - `F5` (refresh), use `Ctrl-L`
  60. -------------------------------------------------------------------------------
  61. nnn v1.3
  62. 2017-07-26
  63. What's in?
  64. - Show directories in custom color (default: enabled in blue)
  65. - Option `-e` to use exiftool instead of mediainfo
  66. - Fixed #34: nftw(3) broken with too many open descriptors
  67. - More concise help screen
  68. -------------------------------------------------------------------------------
  69. nnn v1.2
  70. 2017-06-29
  71. What's in?
  72. - Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
  73. - Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
  74. - Bookmark support (maximum 10, key `b`)
  75. - *Navigate-as-you-type* mode (key `Insert` or option `-i`)
  76. - Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
  77. - Show current directory content size and file count in disk usage mode
  78. - Add detail view mode as default, use `-l` to start in light mode
  79. - Shortcuts `F2` and `^L` to refresh and unfilter
  80. Note: if filter is empty, `Enter` *opens* the currently selected file now
  81. - Help screen shows bookmarks and configuration
  82. - Show a message when calculating disk usage
  83. - Show the spawned shell level
  84. - Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
  85. -------------------------------------------------------------------------------
  86. nnn v1.1
  87. 2017-05-12
  88. News
  89. - Introducing nlay - a highly customizable bash script to handle media type
  90. - nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
  91. - RPM packages for CentOS 7 and Fedora 24 generated on release
  92. What's in?
  93. - *Search-as-you-type*
  94. - Unicode support
  95. - Option `-S` to start in disk usage analyzer mode
  96. - Show media information (using mediainfo)
  97. - Use readline at change directory prompt
  98. - Jump to prev directories using `cd .....` (with `.` as PWD)
  99. - Jump to initial directory using `&`
  100. - Show help, mediainfo and file info in PAGER
  101. - Several optimizations
  102. -------------------------------------------------------------------------------
  103. nnn v1.0
  104. 2017-04-13
  105. Modifications
  106. - Behaviour and navigation
  107. - Detail view (default: disabled) with:
  108. - file type (directory, regular, symlink etc.)
  109. - modification time
  110. - human-readable file size
  111. - current item in reverse video
  112. - number of items in current directory
  113. - full name of currently selected file in 'bar'
  114. - Show details of the currently selected file (stat, file)
  115. - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
  116. - Directories first (even with sorting)
  117. - Sort numeric names in numeric order
  118. - Case-insensitive alphabetic content listing instead of upper case first
  119. - Key `-` to jump to last visited directory
  120. - Roll over at the first and last entries of a directory (with Up/Down keys)
  121. - Removed navigation restriction with relative paths (and let permissions handle it)
  122. - Sort entries by file size (largest to smallest)
  123. - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
  124. - File association
  125. - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
  126. export NNN_OPENER=xdg-open
  127. export NNN_OPENER=gnome-open
  128. export NNN_OPENER=gvfs-open
  129. - Selective file associations (ignored if `NNN_OPENER` is set):
  130. - Associate plain text files (determined using file) with vi
  131. - Associate common audio and video mimes with mpv
  132. - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
  133. - Removed `less` as default file opener (there is no universal standalone opener utility)
  134. - You can customize further (see [how to change file associations](#change-file-associations))
  135. - `NNN_FALLBACK_OPENER` is the last line of defense:
  136. - If the executable in static file association is missing
  137. - If a file type was not handled in static file association
  138. - This may be the best option to set your desktop opener to
  139. - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
  140. export NNN_DE_FILE_MANAGER=thunar
  141. - Optimization
  142. - All redundant buffer removal
  143. - All frequently used local chunks now static
  144. - Removed some redundant string allocation and manipulation
  145. - Simplified some roundabout procedures
  146. - Compiler warnings fixed
  147. - strip the final binary
  148. -------------------------------------------------------------------------------