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.
 
 
 
 
 
 

90 lignes
3.8 KiB

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