aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.1
AgeCommit message (Collapse)Author
2018-02-28Prepare for release v1.7Gravatar Arun Prakash Jana
2018-02-24Add shortcut ^G to quit and cdGravatar Arun Prakash Jana
2018-02-24Support batch file rename in vidirGravatar Arun Prakash Jana
2018-02-24Document file path copy usage sans clipboardGravatar Arun Prakash Jana
2018-01-28Support file path quote on copyGravatar Arun Prakash Jana
2018-01-17keybind to pin current dir - bGravatar Arun Prakash Jana
2018-01-14Support multiple file path copyGravatar 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-13Key changes: ^F - extract archive, ^X - quitGravatar Arun Prakash Jana
2018-01-09Remap ^S and ^Q.Gravatar 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-09Add shortcut ^S to toggle du modeGravatar Arun Prakash Jana
2018-01-07Change bookmark prompt and pin dir keys.Gravatar 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-29Fix #73: How to discard changes and exit new/rename promptGravatar Arun Prakash Jana
2017-12-26Update READMEGravatar Arun Prakash Jana
Update documentation
2017-12-25Prepare for release v1.6Gravatar Arun Prakash Jana
2017-12-25Support 'Open with...'Gravatar Arun Prakash Jana
2017-12-24Update documentationGravatar Arun Prakash Jana
2017-12-24Add option -b to open bookmark directlyGravatar Arun Prakash Jana
2017-12-21Update README, performance numbersGravatar Arun Prakash Jana
2017-10-05Prepare for release v1.5Gravatar Arun Prakash Jana
2017-10-01Change archive list shortcut to 'F'Gravatar Arun Prakash Jana
2017-09-30Fix #44: document PAGER usage in certain screensGravatar Arun Prakash Jana
2017-09-27Support archive listing and extractionGravatar Arun Prakash Jana
2017-09-19Update NNN_NOWAIT changesGravatar Arun Prakash Jana
2017-09-19Prevent nnn from waiting on open file process (#40)Gravatar 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-10Support file and dir createGravatar Arun Prakash Jana
2017-09-04Prepare for v1.4 releaseGravatar Arun Prakash Jana
2017-09-01Use 'pin' dir instead of 'mark' dirGravatar Arun Prakash Jana
2017-08-25More concise helpGravatar Arun Prakash Jana
2017-08-25Clear rename prompt with Ctrl-LGravatar Arun Prakash Jana
2017-08-23Remove shortcut F2 for refresh.Gravatar Arun Prakash Jana
F2 is not very portable e.g., doesn't work over putty (default settings).
2017-08-23Support in-place file renameGravatar Arun Prakash Jana
2017-08-20Support mark a directoryGravatar Arun Prakash Jana
In certain workflows you know you would have revisit a directory. Mark it!
2017-07-26Prepare for release v1.3Gravatar Arun Prakash Jana
2017-07-06Option -n is redundantGravatar Arun Prakash Jana
2017-07-03Re-format helpGravatar Arun Prakash Jana
2017-07-03Custom color support for directoriesGravatar Arun Prakash Jana
2017-07-02Add option -e to use exiftoolGravatar Arun Prakash Jana
2017-06-30Show directories in color (default: enabled)Gravatar Arun Prakash Jana
2017-06-29Prepare for release v1.2Gravatar Arun Prakash Jana
2017-06-25Support F2 to refreshGravatar Arun Prakash Jana
2017-06-11Show current config along with helpGravatar Arun Prakash Jana
2017-06-11Support bookmarksGravatar Arun Prakash Jana
2017-06-07Suppress output when spawning DE file managerGravatar Arun Prakash Jana
2017-06-07When filter is empty, open file on EnterGravatar Arun Prakash Jana
2017-06-06Exit once an app is found. Help, doc updates.Gravatar Arun Prakash Jana
2017-06-06Set detail view mode as default, introduce light modeGravatar Arun Prakash Jana
2017-06-06We copy the absolute file pathGravatar Arun Prakash Jana
2017-06-06Optionally use EDITOR (fallback vi) for text filesGravatar Arun Prakash Jana
2017-06-06desktop opener - xdg-open on Linux and open(1) on OS XGravatar Arun Prakash Jana
2017-06-05nlay - support multiple appsGravatar Arun Prakash Jana