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.
 
 
 
 
 
 

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