aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2020-05-26Prepare for release v3.2Gravatar Arun Prakash Jana
2020-05-24Fix build breakGravatar Arun Prakash Jana
2020-05-24Select file if file path is passedGravatar Arun Prakash Jana
2020-05-24Fix filterfn not in sync with cfg.regexGravatar Arun Prakash Jana
2020-05-23Add -a option to generate a temporary NNN_FIFO (#588)Gravatar lvgx
* Add -a option to generate a temporary NNN_FIFO * Add documentation for -a option * plugins/README.md: promote the use of -a This obsoletes the global FIFO unlink trick, so I remove mentions of it. @jarun update: Polish -a
2020-05-20Fix build breakGravatar Arun Prakash Jana
2020-05-20Fix #582Gravatar Arun Prakash Jana
2020-05-19Notify FIFO readers on exit (if any) (#581)Gravatar lvgx
This allows to close preview windows opened just before exiting nnn.
2020-05-19Fix regression from commit 2200a1cGravatar Arun Prakash Jana
2020-05-19Fix build breakGravatar Arun Prakash Jana
2020-05-18Option -P: specify plugin key to run on startGravatar Arun Prakash Jana
2020-05-17Take to target on Right/l on symlink in list dirGravatar Arun Prakash Jana
2020-05-16Fix #575Gravatar Arun Prakash Jana
2020-05-14Fix #571Gravatar Arun Prakash Jana
2020-05-13Allow launching plugins with Alt + plugin's key (#569)Gravatar lvgx
* Allow launching plugins with Alt + plugin's key * Fix Alt key in filter/prompts modes * Fix handling Alt key in nextsel() In filter mode: run the associated plugin. In prompt mode: just throw out the Alt+key input. In nextsel(): differentiate Alt+key and Esc
2020-05-12Skip printing and erasingGravatar Arun Prakash Jana
2020-05-10Do not leak wfdGravatar Arun Prakash Jana
2020-05-10Simplify cdGravatar Arun Prakash Jana
2020-05-10Fix #565: chdir when dir is changedGravatar Arun Prakash Jana
2020-05-10Fix #564: Option -l: number of lines to move on mouse scrollGravatar Arun Prakash Jana
2020-05-10Remove blocking pipe open in childGravatar Arun Prakash Jana
2020-05-10Use standard exit status everywhereGravatar Arun Prakash Jana
2020-05-10Use exit statusGravatar Arun Prakash Jana
2020-05-10Fix reading from pipe when running pluginGravatar Arun Prakash Jana
2020-05-09Increase pipe capacityGravatar Arun Prakash Jana
2020-05-06Ignore -S when start dir is specifiedGravatar Arun Prakash Jana
2020-05-06Ignore false lint issueGravatar Arun Prakash Jana
2020-05-06Fix no preview update when dir changed with same entry number hoveredGravatar Arun Prakash Jana
2020-05-06Fix broken dir read from pipeGravatar Arun Prakash Jana
2020-05-06Drop fzy supportGravatar Arun Prakash Jana
2020-05-06Prevent open FIFO prom leaking to subprocessGravatar Léo Villeveygoux
This fix previews window staying open after nnn exits, because they inherited open FIFO (in write mode) from parent nnn process, and never close it.
2020-05-05Fix double free when starting in list modeGravatar Arun Prakash Jana
2020-05-05Double click only works on same item (#555)Gravatar 0xACE
This patch disables accidental triggering of double clicking when you are just single clicking on multiple objects fast.
2020-05-05SEL_FIRST now displays the correct message (#556)Gravatar 0xACE
A bit scary when you get prompted to remove a file but you wanted to select a file. I also made sure all strings are correctly ordered.
2020-05-05Fix context range checkGravatar Arun Prakash Jana
2020-05-04Add an option to print hovered files to a FIFO (#548)Gravatar lvgx
* Add an option to print hovered files to a FIFO This adds an env variable, `NNN_FIFO`, that can be set to a path that `nnn` will open/create as a FIFO, and where every hovered file's path is printed. This allows creating external perview/quick open plugins, ... It can be compiled out with the make variable `O_NOFIFO`. * Check filename ptr instead of full path (for FIFO) * Add documentation to use NNN_FIFO in plugins * Fix path sent to FIFO in empty dirs
2020-05-04Use const typeGravatar Arun Prakash Jana
2020-05-04Refactor move_cursor()Gravatar Arun Prakash Jana
2020-05-04Fix #550Gravatar Arun Prakash Jana
2020-05-04Add is_prefix(), block empty files completelyGravatar Arun Prakash Jana
2020-05-03Context code '+' to create context smartlyGravatar Arun Prakash Jana
2020-05-03Decouple listpath and initpathGravatar Arun Prakash Jana
2020-05-03Show messages appropriatelyGravatar Arun Prakash Jana
2020-05-03Plugin mimelist: support reading file list from (cmd as) pluginGravatar Arun Prakash Jana
2020-05-03browse: fix nnn -e (#549)Gravatar Danh Doan
The current code will start editor if the mime doesn't start with "text/". But, we want the opposite. Simplify the check by using `strncmp` instead. We may improve by writing a helper: `start_withs` in the future. This change also cleans -Wstrict-aliasing on Ubuntu 16.04 LTS
2020-05-03Simplify unescape() in no locale modeGravatar Arun Prakash Jana
2020-05-02Dim file details in detail modeGravatar Arun Prakash Jana
2020-04-27Use mem* functionGravatar Arun Prakash Jana
2020-04-26Show error at sourceGravatar Arun Prakash Jana
2020-04-26Fix #537Gravatar Arun Prakash Jana