aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-08-04Support duplicate file/dirGravatar Arun Prakash Jana
2019-08-04Merge pull request #312 from rindeal/patch-1Gravatar Mischievous Meerkat
Make strip explicit for all targets
2019-08-04MacOS support for archive_selection()Gravatar 0xACE
2019-08-04Make selection based archives use relative pathsGravatar 0xACE
This will create archives relative to your current working directory rather than a full path when when creating the archive based on your current selection.
2019-08-03remove $(STRIP) leftover from MakefileGravatar Jan Chren
Use only the `strip` target fort stripping the binary.
2019-08-03Revert "Remove bold fonts"Gravatar Arun Prakash Jana
This reverts commit 43762d58c5daade2bca0ef98fe7796f7fcfb092c.
2019-08-01Increase function lengthGravatar Arun Prakash Jana
2019-08-01Sort by file extensionGravatar Arun Prakash Jana
2019-07-31Update docsGravatar Arun Prakash Jana
2019-07-30Update docsGravatar Arun Prakash Jana
2019-07-29Link the wikiGravatar Arun Prakash Jana
2019-07-29Do not change filter state when clicked below last entryGravatar Arun Prakash Jana
2019-07-28Limit nav-as-you-type toggle to click on last 2 rowsGravatar Arun Prakash Jana
2019-07-27Remove bold fontsGravatar Arun Prakash Jana
This reverts commit d0c2e9da298c1f6042d775deaae33f9b9d70b6e1. Remove bold fonts
2019-07-27Minor reformatGravatar Arun Prakash Jana
2019-07-27Update docsGravatar Arun Prakash Jana
2019-07-27Support extract, list archives with default utilsGravatar Arun Prakash Jana
2019-07-27Support archiving with default utilsGravatar Arun Prakash Jana
2019-07-27Document dual pane alias with dvtmGravatar Arun Prakash Jana
2019-07-25Fix #301 - use local buffer to avoid overwriting g_bufGravatar Arun Prakash Jana
2019-07-23Fix #307 - disable outputGravatar Arun Prakash Jana
2019-07-22Fix #307Gravatar Arun Prakash Jana
2019-07-21Fix hex viewerGravatar Arun Prakash Jana
2019-07-21Revert "Fix #307"Gravatar Arun Prakash Jana
This reverts commit fee2c339cc635b826cc83e79a4ecd7aec24e4244.
2019-07-20Update docsGravatar Arun Prakash Jana
2019-07-16Merge pull request #310 from 0xACE/keyresizeGravatar Mischievous Meerkat
Use KEY_RESIZE when prompting user input
2019-07-16Merge pull request #309 from 0xACE/readline-resizeGravatar Mischievous Meerkat
stop readline from overwriting LINES
2019-07-16documentation on rl_change_environmentGravatar 0xACE
Basically that line lets nnn retain the WINCH signal for itself.
2019-07-16set rl_change_environment in readline gt v6.3Gravatar 0xACE
Looked up GNU readline library's repo and looked for the first occurance of rl_change_environment.
2019-07-16stop readline from overwriting LINESGravatar 0xACE
The problem was that readline would completely block LINES from updating after prompting the user. I'm not entirely sure why this happened, but at least this patch fixes the problem.
2019-07-16Use KEY_RESIZE when prompting user inputGravatar 0xACE
The problem was that a window wouldn't resize while prompting the user for input. These changes allows the input methods in nnn to resize properly if KEY_RESIZE is defined. A more portable solution would be hooking the WINCH signal and update the xlines value from there along with some resized flag. In some cases the full window isn't redrawn until the user has finished the input. This is because in some functions I wasn't sure the current "path" was available.
2019-07-16Fix #307Gravatar Arun Prakash Jana
2019-07-15Update docsGravatar Arun Prakash Jana
2019-07-15Add F2 for rename (undocumented)Gravatar Arun Prakash Jana
2019-07-15Compact notation for time/size sort orderGravatar Arun Prakash Jana
2019-07-15Remove redundant initializationGravatar Arun Prakash Jana
2019-07-14Update docsGravatar Arun Prakash Jana
2019-07-14Resurrect default sortGravatar Arun Prakash Jana
2019-07-14Remove unused variableGravatar Arun Prakash Jana
2019-07-14Fix coolsizeGravatar Arun Prakash Jana
2019-07-14Fix crash on a broken USBGravatar Arun Prakash Jana
2019-07-13Update docsGravatar Arun Prakash Jana
2019-07-12Termux improvement: toggle nav-as-you-typeGravatar Arun Prakash Jana
2 changes: - Toggle nav-as-you-type with left single/double click below last entry - Handle mouse events when filter is on
2019-07-12Fix commenting style (if applicable)Gravatar Arun Prakash Jana
2019-07-12Termux improvement: remap visit parent clickGravatar Arun Prakash Jana
Visit parent is now left single click outside context nums on top row.
2019-07-12Support mouse scrollGravatar Arun Prakash Jana
This is limited to libncurses support of full mouse scrolling. Ref: https://invisible-island.net/ncurses/man/curs_mouse.3x.html#h3-Mouse-events
2019-07-12Update comments and debug infoGravatar Arun Prakash Jana
2019-07-12Merge pull request #305 from 0xACE/fosterhomeGravatar Mischievous Meerkat
Find a parent when CWD disappears
2019-07-12Keep lastname directory selectedGravatar 0xACE
incase the user just lost access, it would be better to remember the selected directory to keep it highlighted.
2019-07-12fixed misleading `else if` & text. removed lastdirGravatar 0xACE