Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-16 | Use KEY_RESIZE when prompting user input | 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-16 | Fix #307 | Arun Prakash Jana | |
2019-07-15 | Add F2 for rename (undocumented) | Arun Prakash Jana | |
2019-07-15 | Compact notation for time/size sort order | Arun Prakash Jana | |
2019-07-15 | Remove redundant initialization | Arun Prakash Jana | |
2019-07-14 | Resurrect default sort | Arun Prakash Jana | |
2019-07-14 | Remove unused variable | Arun Prakash Jana | |
2019-07-14 | Fix coolsize | Arun Prakash Jana | |
2019-07-14 | Fix crash on a broken USB | Arun Prakash Jana | |
2019-07-12 | Termux improvement: toggle nav-as-you-type | 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-12 | Fix commenting style (if applicable) | Arun Prakash Jana | |
2019-07-12 | Termux improvement: remap visit parent click | Arun Prakash Jana | |
Visit parent is now left single click outside context nums on top row. | |||
2019-07-12 | Support mouse scroll | 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-12 | Update comments and debug info | Arun Prakash Jana | |
2019-07-12 | Keep lastname directory selected | 0xACE | |
incase the user just lost access, it would be better to remember the selected directory to keep it highlighted. | |||
2019-07-12 | fixed misleading `else if` & text. removed lastdir | 0xACE | |
2019-07-12 | Find a parent when CWD disappears | 0xACE | |
The previous behaviour would exit nnn when the CWD disappeared. | |||
2019-07-11 | Fix mtime comparison | Arun Prakash Jana | |
2019-07-10 | Fix #304 | Arun Prakash Jana | |
2019-07-08 | Set mouse interval | Arun Prakash Jana | |
2019-07-06 | Revert "Move declarations up" | Arun Prakash Jana | |
This reverts commit afdfcecb9c757eb52be34f854947de48fd437447. | |||
2019-07-05 | Set scrolloff to 3 | Arun Prakash Jana | |
2019-07-05 | Minor refactor | Arun Prakash Jana | |
2019-07-05 | Fix #301 | Arun Prakash Jana | |
2019-07-05 | Move declarations up | Arun Prakash Jana | |
2019-07-05 | Do not show mantissa for absolute sizes | Arun Prakash Jana | |
2019-07-05 | Show stat when file has single quote | Arun Prakash Jana | |
2019-07-05 | Replace snprintf for printing file size | Arun Prakash Jana | |
2019-06-28 | Use macros for return codes | Arun Prakash Jana | |
2019-06-27 | Remove duplicate code (#295) | tanyaionova | |
These three lines are exact copy of 4555-4557. As opener is not changed in between, we can delete these | |||
2019-06-25 | Use generic msg | Arun Prakash Jana | |
2019-06-24 | Fix #291 | Arun Prakash Jana | |
2019-06-22 | Fix #290: terminate g_buf correctly | Arun Prakash Jana | |
2019-06-22 | Fix #290: wchar_t may vary in size | Arun Prakash Jana | |
2019-06-20 | Fix #287 | Arun Prakash Jana | |
2019-06-17 | Fix #285 | Arun Prakash Jana | |
2019-06-17 | Add widely available cmatrix as locker fallback | Arun Prakash Jana | |
2019-06-17 | Use case insensitive version sort to compare | Arun Prakash Jana | |
2019-06-15 | Wait and show command output when running a command | Arun Prakash Jana | |
2019-06-13 | Fix warning on CentOS 6 (refer to #282) | Arun Prakash Jana | |
2019-06-13 | Merge pull request #280 from sjmulder/pr/sign-compare | Mischievous Meerkat | |
Fix sign conversion and comparison warnings | |||
2019-06-13 | Don't ignore fwrite errors | Sijmen J. Mulder | |
Fixes warning on CentOS 6: src/nnn.c:754: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result | |||
2019-06-13 | Fix sign conversion and comparison warnings | Sijmen J. Mulder | |
Building on i386 (NetBSD or Debian): src/nnn.c: In function 'selectiontofd': src/nnn.c:783:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (pos <= lastpos) { ^ src/nnn.c:791:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (pos <= lastpos) { ^ src/nnn.c: In function 'showcplist': src/nnn.c:823:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (pos && pos == copybufpos) ^ src/nnn.c: In function 'xlink': src/nnn.c:1955:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (pos < copybufpos) { | |||
2019-06-09 | Support XDG_CONFIG_HOME | Arun Prakash Jana | |
2019-06-07 | Move cd on quit file | Arun Prakash Jana | |
The new location is ~/.config/nnn/.lastd | |||
2019-06-05 | Move clang-tidy config | Arun Prakash Jana | |
2019-06-05 | Use local buffers for events | Arun Prakash Jana | |
2019-06-05 | Use pipes.sh as fallback user lock | Arun Prakash Jana | |
2019-06-05 | Use pipes.sh as locker fallback | Arun Prakash Jana | |
2019-06-04 | Commented check | Arun Prakash Jana | |