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.

CHANGELOG 25 KiB

5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. nnn v3.0
  2. 2020-02-12
  3. - take list of files as input and show
  4. - option `-e` replaces `NNN_USE_EDITOR`
  5. - option `-t` replaces `NNN_IDLE_TIMEOUT`
  6. - PCRE support
  7. - more readline bindings for native prompts
  8. - run GUI app as plugin
  9. - attempt lazy unmount when regular unmount fails
  10. - fix unmount on macOS: use `umount`
  11. - detect `sshfs` and `rclone` to prompt intelligently
  12. - auto-proceed on file open (toggle key <kbd>+</kbd>)
  13. - quit with error code on <kbd>Q</kbd>
  14. - additional key <kbd>F5</kbd> to toggle hidden
  15. - key <kbd>e</kbd> to edit in EDITOR (back on multiple user requests)
  16. - option to edit list of files in selection is changed to <kbd>E</kbd>
  17. - do not end selection on redraw
  18. - `nuke`: [`glow`](https://github.com/charmbracelet/glow) as Markdown viewer
  19. - `nuke`: refactor, handle some common video types by extension
  20. - file name removed from status bar
  21. - static Makefile target
  22. - generate, upload static package on release
  23. - fix crash on entering empty dir, then Down
  24. - fix keypresses lost when showing message
  25. - fix #227: `nnn` creates xdg-open zombies
  26. -------------------------------------------------------------------------------
  27. nnn v2.9
  28. 2020-01-15
  29. - all keybinds and options reviewed by the team and frozen (see #422)
  30. - reduced number of keybinds
  31. - greatly improved help screen readability
  32. - `nuke`: sample opener (CLI-only by default) and plugin
  33. - fast line redraws instead of full screen refresh (thanks @annagrram)
  34. - auto archive handling by extension (see config `NNN_ARCHIVE`)
  35. - Lead key simplified to bookmark key (<kbd>b</kbd> or <kbd>^/</kbd>)
  36. - single key to toggle order (<kbd>t</kbd> or <kbd>^T</kbd>)
  37. - plugins
  38. - `.cbcp`: copy selection to system clipboard (internal, program option `-x`)
  39. - `.ntfy`: show noti on cp, mv, rm completion (internal, program option `-x`)
  40. - `autojump`: navigate using autojump
  41. - `upload`: paste text files to http://ix.io, upload rest to https://file.io
  42. - all fuzzy plugins modified to support both `fzf` and `fzy`
  43. - more control on plugins
  44. - prefix `-` to skip directory refresh after running (cmd as) plugin
  45. - suffix `*` to skip confirmation after running cmd as plugin
  46. - indicate range selection mode with `*`
  47. - list keys at bookmark and plugin key prompts
  48. - visit to pinned dir like bookmarks (Bookmark key followed by <kbd>,</kbd>)
  49. - toggle executable (key <kbd>*</kbd>)
  50. - show mime along with file details
  51. - more special keys at empty filter prompt:
  52. - apply the last filter (<kbd>^L</kbd>)
  53. - toggle between string and regex (<kbd>/</kbd>)
  54. - toggle case-sensitivity (<kbd>:</kbd>)
  55. - retain filter on <kbd>Esc</kbd>, <kbd>Up</kbd>, <kbd>Down</kbd>
  56. - show filter details when filter is on
  57. - remove option to run filter as cmd on prompt key (can be disruptive)
  58. - program options
  59. - option `-x`: enable notis and copy selection to system clipboard
  60. - option `-g`: regex filters (string filter is default now)
  61. - option `-Q`: quit program without confirmation
  62. - option `-s`: load session
  63. - option `-n`: start in nav-as-you-type mode
  64. - option `-v`: version sort
  65. - option `-V`: show program version
  66. - option `-A`: disable dir auto-select
  67. - ISO 8601 compliant date in status bar
  68. - ported to Haiku OS (thanks @annagrram)
  69. - sort only filtered entries (to avoid directory refresh)
  70. - fix `getplugs` to install hidden files
  71. - fix several selection issues (see #400)
  72. - fix detail mode not restored on loading session
  73. - fix symlink to directory not auto-selected
  74. - fix regex error on partial regex patterns
  75. - fix symlink not shown if `stat(2)` on target fails
  76. - fix flags when spawning a CLI opener as default FM
  77. - fix issue with stat flag on Sun (no support for `dirent.d_type`)
  78. - fix current file in current context not saved correctly in session
  79. - signed source distribution on release
  80. - simplified debugging with line numbers in logs
  81. -------------------------------------------------------------------------------
  82. nnn v2.8.1
  83. 2019-12-05
  84. - Fix always archiving current file
  85. - More elaborate docs on selection changes
  86. -------------------------------------------------------------------------------
  87. nnn v2.8
  88. 2019-12-04
  89. - sessions (thanks @annagrram)
  90. - `rclone` support for remote access (mount _any_ cloud storage!!!)
  91. - toggle selection with <kbd>Space</kbd> or <kbd>^J</kbd>
  92. - ignore events during selection so the `+` symbol is not lost
  93. - run custom (non-shell-interpreted) commands like plugins
  94. - configure _cd-on-quit_ as the default behaviour
  95. - create parent dirs for new files and dirs, duplicate a file/dir anywhere
  96. - _copy/move as_ workflow (thanks @KlzXS)
  97. - edit , flush selection buffer (thanks @KlzXS)
  98. - support xargs with minimal options (as in BusyBox) (thanks @KlzXS)
  99. - changed the key to size sort to <kbd>z</kbd>
  100. - additional key <kbd>]</kbd> to show command prompt
  101. - mount archives using `archivemount`
  102. - smoother double click handling
  103. - program option `-R` to disable rollover at edges
  104. - keybind collision checker (for custom keybind config) (thanks @annagrram)
  105. - show size of file in bytes in status bar in disk usage mode
  106. - pass unresolved path as second argument (`$2`) to plugin
  107. - mechanism for plugins to control active directory
  108. - all binary questions are confirmed by <kbd>y</kbd> or <kbd>Y</kbd>
  109. - plugins
  110. - some plugins renamed
  111. - integrated `shellcheck` in CI, POSIX-compliance fixes (thanks @koalaman)
  112. - `getplugs` - detect modifications in exiting plugin file (thanks @KlzXS)
  113. - `drag-file` & `drop-file`: drag & drop files using dragon
  114. - `gutenread`: browse, download and read from Project Gutenberg
  115. - `suedit` - edit file with superuser permissions
  116. - `fzhist` - fuzzy select commands from history, edit and run
  117. - `fzcd` - change to a fuzzy-searched directory
  118. - `rename` - batch rename directory or selection using qmv or vidir
  119. - `pskill` - fuzzy list a process or zombies by name and kill
  120. - `exetoggle` - toggle executable status of hovered file
  121. - `treeview` - informative tree output with file permissions and size
  122. - `chksum` - recursively calculate checksum for files in hovered directory
  123. - `fzopen` renamed to `fzopen`
  124. - `imgsxiv` instructions added to browse and rename images
  125. - create link to current file
  126. - additional key <kbd>;</kbd> to execute plugin
  127. - more explicit force removal message
  128. - force non-detachable internal edits in $EDITOR (option `-E`)
  129. - export current file as `$nnn` (instead of `$NN`)
  130. - fix file open failure from browser when configured as default FM
  131. -------------------------------------------------------------------------------
  132. nnn v2.7
  133. 2019-10-06
  134. - plugins for image preview, image and video thumbnails
  135. - redesigned selection workflow
  136. - drop path prefix for files in current dir for selection based archives
  137. - custom direct keybinds for plugins
  138. - libreadline `.history` file moved to `nnn` config directory
  139. - export current entry as `$NN` at command prompt
  140. - more informative status bar in light/detail modes
  141. - auto-proceed to next file on single file select
  142. - path clipping for long paths
  143. - completely revamped wiki
  144. - new program options:
  145. - `-a` to use file access time throughout the program
  146. - `-c` to indicate cli-only opener
  147. - `-f` to run filter as command on <kbd>^P</kbd>
  148. - `-o` replaces config `NNN_RESTRICT_NAV_OPEN`
  149. - `-t` replaces config `NNN_NO_AUTOSELECT`
  150. - `-r` replaces config `NNN_OPS_PROG`
  151. - plugin changes:
  152. - `vidthumb` - show video thumbnails in terminal
  153. - `mediainf` - show media info (decoupled as a plugin)
  154. - `notes` - open a quick notes file/dir in `$EDITOR` (decoupled as a plugin)
  155. - `dups` - list duplicate files in the current directory
  156. - `oldbigfile` - list large files by access time
  157. - `moclyrics` - show lyrics of the track currently playing in MOC
  158. - `uidgid` list uid and gid of files in directory
  159. - `mocplay` - now detects if a track is playing or not
  160. - `organize` - categorize files and move to respective directories
  161. - `pastebin` - now uses ix.io paste service
  162. - `fzy-edit` - merged into `fzy-open`
  163. - `viuimg` - fix directory view
  164. - `checksum` - fixed POSIX compliance issues
  165. - `boom` - play music in MOC
  166. - keybind changes:
  167. - select entry: <kbd>Space</kbd> and <kbd>^J</kbd>
  168. - select range (or clear selection): <kbd>m</kbd> and <kbd>^K</kbd>
  169. - select all in dir: <kbd>a</kbd>
  170. - list selection: <kbd>M</kbd>
  171. - <kbd>^N</kbd> replaces <kbd>^T</kbd> to toggle _nav-as-you-type_
  172. - <kbd>Shift TAB</kbd> to reverse context cycle
  173. - <kbd>'</kbd> to jump to first file in dir
  174. - <kbd>S</kbd> for du, <kbd>A</kbd> for apparent du
  175. - additional key <kbd>:</kbd> to run plugin
  176. - additional key <kbd>F2</kbd> to rename file
  177. - additional key <kbd>F5</kbd> to redraw
  178. - quit context key <kbd>Leadq</kbd> is removed
  179. - Leader key combinations:
  180. - <kbd>Lead'</kbd> to jump to first file in dir
  181. - <kbd>Lead]</kbd> go to next active context
  182. - <kbd>Lead[</kbd> go to prev active context
  183. - <kbd>Lead.</kbd> toggle show hidden files
  184. - improved duplicate file workflow
  185. - improved batch rename workflow when a selection exists
  186. - removed the wild load option (`-w`)
  187. - removed quick notes (added plugin `notes`)
  188. - fix #225 (thanks @KlzXS)
  189. - fix `tar`/`bsdtar` always creating tar archives (and not by suffix)
  190. - fix single mouse click to select file not working
  191. - fix symlink to dir removed on batch rename
  192. - fix detail mode not set with program option `-S`
  193. -------------------------------------------------------------------------------
  194. nnn v2.6
  195. 2019-08-06
  196. - new plugins
  197. - view image or browse a directory of images in terminal
  198. - show image thumbnails
  199. - PDF and text file reader
  200. - calculate and verify checksum of selection or file
  201. - append (and play) selection/dir/file music in MOC
  202. - variable bitrate mp3 ringtone generator
  203. - split current file or join selection
  204. - better experience on Termux (and touch based devices)
  205. - mouse scrolling support (with ncursesw6.0 and above)
  206. - tap/left click to visit parent, toggle nav-as-you-type mode
  207. - light mode set as default
  208. - show status bar and use reverse video in light mode
  209. - changed program options
  210. - `-d`: detail mode
  211. - `-H`: show hidden files
  212. - `-l` is retired
  213. - support `XDG_CONFIG_HOME`
  214. - support <kbd>/</kbd> as an additional Leader key when filter is on
  215. - sort by file extension
  216. - use zip/unzip/tar if atool/bsdtar not found
  217. - support duplicate file (key <kbd>^R</kbd>, same as rename file)
  218. - new config option `NNN_SSHFS_OPTS` to specify `sshfs` options
  219. - restrict opening 0 byte files (`NNN_RESTRICT_0B` is obsolete)
  220. - critical defects fixed
  221. - fix #276 - crash with variable length inotify event handling
  222. - fix #285 - hang after deleting/moving current directory
  223. - fix #274 - a broken prompt on empty input with libreadline
  224. - fix #304 - list selection from another instance
  225. - `cmatrix` as locker fallback
  226. - wait for user input after running a command from prompt
  227. - scrolloff set to 3 from 5
  228. -------------------------------------------------------------------------------
  229. nnn v2.5
  230. 2019-05-27
  231. - mouse support
  232. - new location for config files - `~/.config/nnn`
  233. - plugin dir location: `~/.config/nnn/plugins`
  234. - selection file `.nnncp` is now `~/.config/nnn/.selection`
  235. - plugins:
  236. - pdfview: view a PDF in pager
  237. - nmount: (un)mount a storage device
  238. - ndiff: file and directory diff for selection
  239. - hexview: view a file in hex
  240. - imgresize: batch resize images to desktop resolution
  241. - ipinfo: check your IP address and whois information
  242. - transfer: upload a file to transfer.in
  243. - pastebin: paste the contents of a text file to paste.ubuntu.com
  244. - boom: play random music from a directory
  245. - nwal: set an image as wallpaper using nitrogen
  246. - pywal: set selected image as wallpaper, change terminal color scheme
  247. - getplugs: update plugins
  248. - SSHFS support
  249. - support `bsdtar`, simplify `patool` integration
  250. - native batch rename support (`vidir` dependency dropped)
  251. - changes to support [configuration](https://github.com/jarun/nnn/wiki/nnn-as-default-file-manager) as the default file manager
  252. - per-context detail/light mode
  253. - case-insensitive version compare
  254. - shortcut to visit `/` - <kbd>`</kbd> (backtick)
  255. - vim-like scrolloff support
  256. - <kbd>^D</kbd> & <kbd>^U</kbd>: scroll half page, <kbd>PgDn</kbd> & <kbd>PdUp</kbd>: scroll full page
  257. - fix selection across contexts
  258. - recognize <kbd>Home</kbd> and <kbd>End</kbd> keys at prompt for editing
  259. - fix broken program option `-b`
  260. - POSIX-compliant user-scripts (wherever possible)
  261. - `NNN_SCRIPT` is retired (replaced by plugins)
  262. -------------------------------------------------------------------------------
  263. nnn v2.4
  264. 2019-03-19
  265. - FreeDesktop.org compliant trashing
  266. - mark selected entries with `+`
  267. - _wild_ mode (option `-w`, key <kbd>^W</kbd>) for _nav-as-you-type_
  268. - POSIX-compliant GUI app launcher with drop-down menu (key <kbd>=</kbd>)
  269. - new scripts:
  270. - upload image to imgur
  271. - send selection to Android using kdeconnect-cli
  272. - show permissions in detail mode
  273. - cp, mv progress bar for Linux (needs advcpmv) [BSD, macOS shows on <kbd>^T</kbd>]
  274. - make libreadline an optional dep (reduces memory usage)
  275. - minimize the number of redraws
  276. - handle screen resize gracefully
  277. - option `-d` to show hidden files (`NNN_SHOW_HIDDEN` is removed)
  278. - additional key <kbd>K</kbd> to toggle selection
  279. - change visit start dir key to <kbd>@</kbd>
  280. - option `-C` to disable colors removed
  281. - per-context initial directory replaced by program start dir
  282. - marker msg when spawning new shell removed
  283. - rename debug file to `nnndbg`
  284. -------------------------------------------------------------------------------
  285. nnn v2.3
  286. 2019-02-19
  287. - file picker mode
  288. - repo of user-contributed scripts
  289. - substring search for filters (option `-s`)
  290. - version sort (option `-n`)
  291. - disk usage calculation abort with <kbd>^C</kbd>
  292. - create sym/hard link(s) to files in selection
  293. - archiving of selection
  294. - show dir symlinks along with dirs in top
  295. - fixed CJK character handling at prompts
  296. - key `N` (1 <= N <= 4) to switch to context N
  297. - bring back `NNN_OPENER` to specify file opener
  298. - env var `NNN_NOTE` and keybind <kbd>^N</kbd> for quick notes
  299. - handle multiple arguments in VISUAL/EDITOR
  300. - show the current directory being scanned in `du` mode
  301. - select all files (<kbd>Y</kbd>)
  302. - show command prompt (<kbd>^P</kbd>)
  303. - key <kbd>,</kbd> replaces <kbd>`</kbd> as alternative Leader Key
  304. - keybind for visit pinned directory is now <kbd>^B</kbd>
  305. - additional key <kbd>^V</kbd> to run or select custom script
  306. - use libreadline for command prompt
  307. - reduce delay on <kbd>Esc</kbd> press
  308. - config option to avoid unexpected behaviour on 0-byte file open (see #187)
  309. - rename config option `DISABLE_FILE_OPEN_ON_NAV` to `NNN_RESTRICT_NAV_OPEN`
  310. - keys removed - <kbd>$</kbd>, <kbd>^</kbd>, <kbd>Backspace</kbd>, <kbd>^H</kbd>, <kbd>^P</kbd>, <kbd>^M</kbd>, <kbd>^W</kbd>, <kbd>`</kbd>
  311. -------------------------------------------------------------------------------
  312. nnn v2.2
  313. 2019-01-01
  314. What's in?
  315. - (neo)vim plugin [nnn.vim](https://github.com/mcchrish/nnn.vim)
  316. - macOS fixes
  317. - Fix issues with file copy, move, remove
  318. - Handle <kbd>Del</kbd> in rename prompt
  319. - Pass correct `file` option to identify mime
  320. - Support selection across directories and contexts
  321. - Offer option `force` before file remove
  322. - Keys <kbd>Tab</kbd>, <kbd>^I</kbd> to go to next active context
  323. - Per-context directory color specified by `$NNN_CONTEXT_COLORS`
  324. - Option `-c` is removed
  325. - Option `-C` to disable colors
  326. - Choose script to run from a script directory
  327. - Run a command (or launch an application)
  328. - Run file as executable (key <kbd>C</kbd>)
  329. - Documentation on lftp integration for remote file transfers
  330. - Support a _combined_ set of arguments to `$EDITOR`, `$PAGER` and `$SHELL`
  331. - Handle > 2 GB files on 32-bit ARM
  332. - Env var `$DISABLE_FILE_OPEN_ON_NAV` to disable file open on <kbd>Right</kbd> or <kbd>l</kbd>
  333. - `NUL`-terminated file paths in selection list instead of `LF`
  334. - Better support for Termux and Cygwin environments
  335. - Remapped keys
  336. - <kbd>^I</kbd> - go to next active context
  337. - <kbd>^T</kbd> - toggle _navigate-as-you-type_
  338. -------------------------------------------------------------------------------
  339. nnn v2.1
  340. 2018-11-23
  341. What's in?
  342. - Inclusion in several distros including Arch Linux official repo
  343. - Multiple contexts (_aka_ tabs _aka_ workspaces) [max 4]
  344. - Copy, move, remove selected files, remove current file
  345. - [Leader key](https://github.com/jarun/nnn#leader-key) (like vim)
  346. - In-built GUI app launcher with up to 2 arguments (key <kbd>o</kbd>)
  347. - List copy selection (key <kbd>y</kbd>)
  348. - Env var `NNN_NO_AUTOSELECT` to disable dir auto-select
  349. - Key <kbd>Esc</kbd> exits prompt, <kbd>^L</kbd> clears prompt
  350. - Program runtime help revamped
  351. - Static code analysis integration
  352. - gcc-8 warnings fixed
  353. - Remapped keys:
  354. - <kbd>^W</kbd> - go to pinned dir
  355. - <kbd>^X</kbd> - delete current entry
  356. - <kbd>^Q</kbd> - quit program
  357. - `nlay` is retired (functionality built into `nnn`)
  358. - `chdir` prompt is retired
  359. - Env var `NNN_NO_X` retired, selection now works out of the box
  360. - Only single-char bookmark keys (to work with Leader key)
  361. -------------------------------------------------------------------------------
  362. nnn v2.0
  363. 2018-10-19
  364. What's in?
  365. - Mode to show apparent size (key `S`)
  366. - Script to integrate `patool` instead of `atool`
  367. - Support `bashlock` (OS X) and `lock` (BSD) as terminal locker
  368. - Symbol `@/` for symlink to dir
  369. - Dependency on `libreadline` removed
  370. -------------------------------------------------------------------------------
  371. nnn v1.9
  372. 2018-08-10
  373. What's in?
  374. - Support unlimited number of scripts
  375. - Pass currently selected filename as first argument to custom scripts
  376. - Support directory auto-select in _navigate-as-you-type_ mode
  377. - Show selection name in archive name prompt
  378. - Support Cygwin opener
  379. - Better support on RHEL 25 with earlier version on curses
  380. - Sample script for `fzy` integration
  381. - Now available on OpenBSD
  382. - Disabled package generation for Ubuntu 17.10
  383. -------------------------------------------------------------------------------
  384. nnn v1.8
  385. 2018-05-02
  386. What's in?
  387. - Run a custom script
  388. - Archive selected file/directory
  389. - Show number of cherry-picked files in multi-copy mode
  390. - Env var `NNN_SHOW_HIDDEN` to show hidden files by default
  391. - Additional information in help screen
  392. - Give preference to env var VISUAL, if defined, over EDITOR
  393. - New/changed/remapped shortcuts
  394. - <kbd>^]</kbd> - spawn a new shell in current directory
  395. - <kbd>r</kbd> - edit directory entries in vidir
  396. - <kbd>R</kbd> - run a custom script
  397. - <kbd>^I</kbd> - toggle navigate-as-you-type mode
  398. - <kbd>L</kbd> - lock the current terminal (Linux-only)
  399. - All Ctrl shortcuts enabled in navigate-as-you-type mode
  400. - Fix: GUI programs closing when parent terminal is closed
  401. - Recognize `~`, `-` and `&` at bookmark prompt
  402. - Recognize ruby (.rb) files as text files
  403. - Efficient integer-only file size calculation
  404. - Official inclusion on openSUSE and Fedora
  405. - Package generation for Ubuntu 18.04
  406. -------------------------------------------------------------------------------
  407. nnn v1.7
  408. 2018-02-28
  409. What's in?
  410. - Batch rename/move/delete files in vidir from [moreutils](https://joeyh.name/code/moreutils/)
  411. - Copy multiple file paths
  412. - Copy file paths when X is unavailable
  413. - Optionally quote individual file paths with single quotes on copy
  414. - Use ISO 8601 date format in file details
  415. - New/changed/remapped shortcuts:
  416. - <kbd>^B</kbd> - show bookmark prompt (replaces <kbd>b</kbd>)
  417. - <kbd>b</kbd> - pin current dir (replaces <kbd>^B</kbd>)
  418. - <kbd>^J</kbd> - toggle du mode
  419. - <kbd>R</kbd> - batch rename files in vidir
  420. - <kbd>^F</kbd> - extract archive (replaces <kbd>^X</kbd>)
  421. - <kbd>^G</kbd> - quit nnn and change dir
  422. - <kbd>^X</kbd> - quit nnn (replaces <kbd>^Q</kbd>)
  423. - Extra shortcuts enabled in nav-as-you-type mode:
  424. - <kbd>^K</kbd>, <kbd>^Y</kbd> (file path copy)
  425. - <kbd>^T</kbd> (toggles quoted file path copy)
  426. - <kbd>^R</kbd> (rename)
  427. - <kbd>^O</kbd> (open with...)
  428. - <kbd>^B</kbd> (show bookmark prompt)
  429. - <kbd>^V</kbd> (visit pinned dir)
  430. - <kbd>^J</kbd> (toggle du mode)
  431. - <kbd>^/</kbd> (open desktop opener)
  432. - <kbd>^F</kbd> (extract archive)
  433. - <kbd>^L</kbd> (refresh)
  434. - <kbd>^G</kbd> (quit nnn and change dir)
  435. - <kbd>^X</kbd> (quit nnn)
  436. -------------------------------------------------------------------------------
  437. nnn v1.6
  438. 2017-12-25
  439. What's in?
  440. - Shortcut `^O` to open file with custom application
  441. - Option `-b` to open bookmarks directly at start
  442. - Huge performance improvements around file name storing and handling
  443. - Several large static buffers removed or reduced
  444. - Several internal algorithms fine tuned for performance/resource usage
  445. -------------------------------------------------------------------------------
  446. nnn v1.5
  447. 2017-10-05
  448. What's in?
  449. - File and directory creation (`n`)
  450. - Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
  451. - Show current entry number in status bar
  452. - Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
  453. - Show correct file size on i386 for large files (> 2GB)
  454. -------------------------------------------------------------------------------
  455. nnn v1.4
  456. 2017-09-04
  457. What's in?
  458. - Monitor directory changes
  459. - In-place file rename
  460. - Pin (`Ctrl-B`) a directory and visit (`Ctrl-V`) it anytime
  461. - Auto-completion scripts
  462. - Show volume capacity and free in help
  463. - Auto-fallback to light mode if too few columns (< 35)
  464. - PackageCore integration
  465. - Unsupported Function keys (they never work universally):
  466. - `F2` (rename), use `Ctrl-R`
  467. - `F5` (refresh), use `Ctrl-L`
  468. -------------------------------------------------------------------------------
  469. nnn v1.3
  470. 2017-07-26
  471. What's in?
  472. - Show directories in custom color (default: enabled in blue)
  473. - Option `-e` to use exiftool instead of mediainfo
  474. - Fixed #34: nftw(3) broken with too many open descriptors
  475. - More concise help screen
  476. -------------------------------------------------------------------------------
  477. nnn v1.2
  478. 2017-06-29
  479. What's in?
  480. - Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
  481. - Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
  482. - Bookmark support (maximum 10, key `b`)
  483. - *Navigate-as-you-type* mode (key `Insert` or option `-i`)
  484. - Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
  485. - Show current directory content size and file count in disk usage mode
  486. - Add detail view mode as default, use `-l` to start in light mode
  487. - Shortcuts `F2` and `^L` to refresh and unfilter
  488. Note: if filter is empty, `Enter` *opens* the currently selected file now
  489. - Help screen shows bookmarks and configuration
  490. - Show a message when calculating disk usage
  491. - Show the spawned shell level
  492. - Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
  493. -------------------------------------------------------------------------------
  494. nnn v1.1
  495. 2017-05-12
  496. News
  497. - Introducing nlay - a highly customizable bash script to handle media type
  498. - nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
  499. - RPM packages for CentOS 7 and Fedora 24 generated on release
  500. What's in?
  501. - *Search-as-you-type*
  502. - Unicode support
  503. - Option `-S` to start in disk usage analyzer mode
  504. - Show media information (using mediainfo)
  505. - Use readline at change directory prompt
  506. - Jump to prev directories using `cd .....` (with `.` as PWD)
  507. - Jump to initial directory using `&`
  508. - Show help, mediainfo and file info in PAGER
  509. - Several optimizations
  510. -------------------------------------------------------------------------------
  511. nnn v1.0
  512. 2017-04-13
  513. Modifications
  514. - Behaviour and navigation
  515. - Detail view (default: disabled) with:
  516. - file type (directory, regular, symlink etc.)
  517. - modification time
  518. - human-readable file size
  519. - current item in reverse video
  520. - number of items in current directory
  521. - full name of currently selected file in 'bar'
  522. - Show details of the currently selected file (stat, file)
  523. - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
  524. - Directories first (even with sorting)
  525. - Sort numeric names in numeric order
  526. - Case-insensitive alphabetic content listing instead of upper case first
  527. - Key `-` to jump to last visited directory
  528. - Roll over at the first and last entries of a directory (with Up/Down keys)
  529. - Removed navigation restriction with relative paths (and let permissions handle it)
  530. - Sort entries by file size (largest to smallest)
  531. - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
  532. - File association
  533. - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
  534. export NNN_OPENER=xdg-open
  535. export NNN_OPENER=gnome-open
  536. export NNN_OPENER=gvfs-open
  537. - Selective file associations (ignored if `NNN_OPENER` is set):
  538. - Associate plain text files (determined using file) with vi
  539. - Associate common audio and video mimes with mpv
  540. - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
  541. - Removed `less` as default file opener (there is no universal standalone opener utility)
  542. - You can customize further (see [how to change file associations](#change-file-associations))
  543. - `NNN_FALLBACK_OPENER` is the last line of defense:
  544. - If the executable in static file association is missing
  545. - If a file type was not handled in static file association
  546. - This may be the best option to set your desktop opener to
  547. - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
  548. export NNN_DE_FILE_MANAGER=thunar
  549. - Optimization
  550. - All redundant buffer removal
  551. - All frequently used local chunks now static
  552. - Removed some redundant string allocation and manipulation
  553. - Simplified some roundabout procedures
  554. - Compiler warnings fixed
  555. - strip the final binary
  556. -------------------------------------------------------------------------------