Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-14 | Support multiple file path copy | ||
Design overview: We are introducing multiple file path copy as a mode which can be toggled using the keybind `^Y`. `^K` works as the individual entry selector. If the user wants to select a range, (s)he can press `^Y` on the first entry and `^Y` on the last entry. We subscribe to notifications, so we need a fail-proof way to detect changes in the directory contents. For example, if a file is deleted, it becomes difficult to get the names of all the files in a range containing that file. If the file is on a range boundary it would lead to wrong calculations. To handle this the right way we use CRC8 checksum of all the visible entries in the directory. The checksum is calculated based on the file information buffer. If the CRC changes on a redraw(), we reset the multi-select mode. New line (`\n`) works as the delimiter between file paths. Note that you may have to disable IFS in the `NNN_COPIER` script to show file paths separated by spaces. | |||
2018-01-13 | Key changes: ^F - extract archive, ^X - quit | ||
2018-01-09 | Remap ^S and ^Q. | ||
The replacement keys are: ^J - toggle du mode ^Y - quit The change is done because ^S, ^Q keybinds are lost in the following case: - start nnn - navigate to a different directory - spawn a shell - exit the shell The issue happens only with the 'special' keybinds like ^S, ^Q, ^Z... which get their original shell interpretation back. So we are replacing these 2 keybinds with 2 'non-special' combinations. | |||
2018-01-09 | Add shortcut ^S to toggle du mode | ||
2018-01-07 | Change bookmark prompt and pin dir keys. | ||
New keys: - bookmark prompt (^B) - pin directory (B) The intention of the change is to facilitate opening the bookmark prompt in navigate-as-you-type mode. The bookmark prompt is used more than the pin current directory option. | |||
2017-12-29 | Fix #73: How to discard changes and exit new/rename prompt | ||
2017-12-26 | Update README | ||
Update documentation | |||
2017-12-25 | Prepare for release v1.6 | ||
2017-12-25 | Support 'Open with...' | ||
2017-12-24 | Update documentation | ||
2017-12-24 | Add option -b to open bookmark directly | ||
2017-12-21 | Update README, performance numbers | ||
2017-10-05 | Prepare for release v1.5 | ||
2017-10-01 | Change archive list shortcut to 'F' | ||
2017-09-30 | Fix #44: document PAGER usage in certain screens | ||
2017-09-27 | Support archive listing and extraction | ||
2017-09-19 | Update NNN_NOWAIT changes | ||
2017-09-19 | Prevent nnn from waiting on open file process (#40) | ||
* Prevent nnn from waiting on open file process * Add env var flag to not wait for child process when opening file * Set nowait flag once to skip bit-or every time we open a file * Add documentation for NNN_NOWAIT | |||
2017-09-10 | Support file and dir create | ||
2017-09-04 | Prepare for v1.4 release | ||
2017-09-01 | Use 'pin' dir instead of 'mark' dir | ||
2017-08-25 | More concise help | ||
2017-08-25 | Clear rename prompt with Ctrl-L | ||
2017-08-23 | Remove shortcut F2 for refresh. | ||
F2 is not very portable e.g., doesn't work over putty (default settings). | |||
2017-08-23 | Support in-place file rename | ||
2017-08-20 | Support mark a directory | ||
In certain workflows you know you would have revisit a directory. Mark it! | |||
2017-07-26 | Prepare for release v1.3 | ||
2017-07-06 | Option -n is redundant | ||
2017-07-03 | Re-format help | ||
2017-07-03 | Custom color support for directories | ||
2017-07-02 | Add option -e to use exiftool | ||
2017-06-30 | Show directories in color (default: enabled) | ||
2017-06-29 | Prepare for release v1.2 | ||
2017-06-25 | Support F2 to refresh | ||
2017-06-11 | Show current config along with help | ||
2017-06-11 | Support bookmarks | ||
2017-06-07 | Suppress output when spawning DE file manager | ||
2017-06-07 | When filter is empty, open file on Enter | ||
2017-06-06 | Exit once an app is found. Help, doc updates. | ||
2017-06-06 | Set detail view mode as default, introduce light mode | ||
2017-06-06 | We copy the absolute file path | ||
2017-06-06 | Optionally use EDITOR (fallback vi) for text files | ||
2017-06-06 | desktop opener - xdg-open on Linux and open(1) on OS X | ||
2017-06-05 | nlay - support multiple apps | ||
2017-06-05 | Disable key to run top | ||
2017-06-05 | Use vlock as locker, add ^Q to quit | ||
^Q would quit even from filter mode | |||
2017-06-04 | Update documentation | ||
2017-06-04 | Bind ^L to clear prompt | ||
2017-06-04 | Update docs on navigate-as-you-type mode | ||
2017-06-04 | Insert key for navigate-as-you-type mode | ||