My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

118 lignes
4.6 KiB

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