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.
 
 
 
 
 
 

101 lignes
4.1 KiB

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