My build of nnn with minor changes
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

130 linhas
5.0 KiB

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