Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-06 | Create copy file in home dir, remove copy file on exit | Arun Prakash Jana | |
2018-08-16 | Document that filenames are not unquoted | Arun Prakash Jana | |
2018-08-10 | Prepare for release v1.9 | Arun Prakash Jana | |
2018-08-08 | Implement dir auto-select in nav-as-you-type mode. | Arun Prakash Jana | |
If only one entry matches regex filter and it it a directory, cd into it. | |||
2018-08-07 | nnn is a file manager now | Arun Prakash Jana | |
2018-07-04 | Pass current file name as first argument to custom scripts | Arun Prakash Jana | |
2018-06-27 | Add Space as 2nd file-path copier key (easy to use) | Arun Prakash Jana | |
2018-06-17 | Support multiple scripts | Arun Prakash Jana | |
2018-05-03 | Update man | Arun Prakash Jana | |
2018-05-02 | Prepare for release v1.8 | Arun Prakash Jana | |
2018-05-01 | Update help on filter | Arun Prakash Jana | |
2018-04-26 | Fix man page | Arun Prakash Jana | |
2018-04-25 | Support archive creation | Arun Prakash Jana | |
2018-04-08 | Prefer VISUAL, if defined over EDITOR | Arun Prakash Jana | |
2018-04-04 | Update for PR #100: man and README should be in sync | Arun Prakash Jana | |
2018-04-04 | Show hidden files by default when env NNN_SHOW_HIDDEN is set (#100) | Jakub Jirutka | |
2018-04-01 | Update help | Arun Prakash Jana | |
2018-03-30 | Support screen locking on Linux | Arun Prakash Jana | |
2018-03-30 | New shortcut ^] to spawn shell in current dir | Arun Prakash Jana | |
2018-03-19 | Run a custom script support | Arun Prakash Jana | |
2018-03-16 | Fix #81: GUI programs shouldn't exit on closing the parent terminal | Arun Prakash Jana | |
Issue reproduction steps: 1. Spawn a GUI program e.g. open a PDF file in zathura or evince. 2. Without quitting `nnn` close the terminal. 3. Notice that the application quits too. Can be a nagging issue if someone is not using a drop-down terminal. Fix: detach a GUI child and start it in a new session. There are 2 aspects to this commit: - It fixes #81: in cases where we do not wait for a spawned child we can assume that the child is a GUI process. We detach and spawn the child in a new session. - It changes the behaviour to @Rahi374's suggestion in PR #40 i.e. invoke the DE opener in F_NOWAIT mode. | |||
2018-03-07 | Fix #95: Add ^I as an alternative to Insert | Arun Prakash Jana | |
2018-03-04 | Fix #89: User-specific tmp file for copying filenames | Arun Prakash Jana | |
Use distinct (by username) tmp filename to copy file paths. The pattern used is: /tmp/nnncp$USER If username is 'arun', the file name is `/tmp/nnncparun`. | |||
2018-03-03 | Support ~, - and & keyboard shortcuts at the bookmark prompt. | Arun Prakash Jana | |
In nav-as-you-type mode only control keys are understood when filter is enabled. We need some way to quicly jump HOME, last visited dir or start dir. | |||
2018-02-28 | Prepare for release v1.7 | Arun Prakash Jana | |
2018-02-24 | Add shortcut ^G to quit and cd | Arun Prakash Jana | |
2018-02-24 | Support batch file rename in vidir | Arun Prakash Jana | |
2018-02-24 | Document file path copy usage sans clipboard | Arun Prakash Jana | |
2018-01-28 | Support file path quote on copy | Arun Prakash Jana | |
2018-01-17 | keybind to pin current dir - b | Arun Prakash Jana | |
2018-01-14 | Support multiple file path copy | Arun Prakash Jana | |
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 | Arun Prakash Jana | |
2018-01-09 | Remap ^S and ^Q. | Arun Prakash Jana | |
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 | Arun Prakash Jana | |
2018-01-07 | Change bookmark prompt and pin dir keys. | Arun Prakash Jana | |
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 | Arun Prakash Jana | |
2017-12-26 | Update README | Arun Prakash Jana | |
Update documentation | |||
2017-12-25 | Prepare for release v1.6 | Arun Prakash Jana | |
2017-12-25 | Support 'Open with...' | Arun Prakash Jana | |
2017-12-24 | Update documentation | Arun Prakash Jana | |
2017-12-24 | Add option -b to open bookmark directly | Arun Prakash Jana | |
2017-12-21 | Update README, performance numbers | Arun Prakash Jana | |
2017-10-05 | Prepare for release v1.5 | Arun Prakash Jana | |
2017-10-01 | Change archive list shortcut to 'F' | Arun Prakash Jana | |
2017-09-30 | Fix #44: document PAGER usage in certain screens | Arun Prakash Jana | |
2017-09-27 | Support archive listing and extraction | Arun Prakash Jana | |
2017-09-19 | Update NNN_NOWAIT changes | Arun Prakash Jana | |
2017-09-19 | Prevent nnn from waiting on open file process (#40) | Paul | |
* 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 | Arun Prakash Jana | |
2017-09-04 | Prepare for v1.4 release | Arun Prakash Jana | |