Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-15 | Add F2 for rename (undocumented) | ||
2019-07-15 | Compact notation for time/size sort order | ||
2019-07-15 | Remove redundant initialization | ||
2019-07-14 | Resurrect default sort | ||
2019-07-14 | Remove unused variable | ||
2019-07-14 | Fix coolsize | ||
2019-07-14 | Fix crash on a broken USB | ||
2019-07-12 | Termux improvement: toggle nav-as-you-type | ||
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) | ||
2019-07-12 | Termux improvement: remap visit parent click | ||
Visit parent is now left single click outside context nums on top row. | |||
2019-07-12 | Support mouse scroll | ||
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 | ||
2019-07-12 | Keep lastname directory selected | ||
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 | ||
2019-07-12 | Find a parent when CWD disappears | ||
The previous behaviour would exit nnn when the CWD disappeared. | |||
2019-07-11 | Fix mtime comparison | ||
2019-07-10 | Fix #304 | ||
2019-07-08 | Set mouse interval | ||
2019-07-06 | Revert "Move declarations up" | ||
This reverts commit afdfcecb9c757eb52be34f854947de48fd437447. | |||
2019-07-05 | Set scrolloff to 3 | ||
2019-07-05 | Minor refactor | ||
2019-07-05 | Fix #301 | ||
2019-07-05 | Move declarations up | ||
2019-07-05 | Do not show mantissa for absolute sizes | ||
2019-07-05 | Show stat when file has single quote | ||
2019-07-05 | Replace snprintf for printing file size | ||
2019-06-28 | Use macros for return codes | ||
2019-06-27 | Remove duplicate code (#295) | ||
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 | ||
2019-06-24 | Fix #291 | ||
2019-06-22 | Fix #290: terminate g_buf correctly | ||
2019-06-22 | Fix #290: wchar_t may vary in size | ||
2019-06-20 | Fix #287 | ||
2019-06-17 | Fix #285 | ||
2019-06-17 | Add widely available cmatrix as locker fallback | ||
2019-06-17 | Use case insensitive version sort to compare | ||
2019-06-15 | Wait and show command output when running a command | ||
2019-06-13 | Fix warning on CentOS 6 (refer to #282) | ||
2019-06-13 | Merge pull request #280 from sjmulder/pr/sign-compare | ||
Fix sign conversion and comparison warnings | |||
2019-06-13 | Don't ignore fwrite errors | ||
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 | ||
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 | ||
2019-06-07 | Move cd on quit file | ||
The new location is ~/.config/nnn/.lastd | |||
2019-06-05 | Move clang-tidy config | ||
2019-06-05 | Use local buffers for events | ||
2019-06-05 | Use pipes.sh as fallback user lock | ||
2019-06-05 | Use pipes.sh as locker fallback | ||
2019-06-04 | Commented check | ||
2019-06-04 | Fix #276 | ||
2019-06-04 | Restrict opening 0B files. | ||
See #187. The behaviour has always remained so confusing. In my case a 0B file opens in the GUI editor though I have NNN_USE_EDITOR set. We have a sensible message in place to help users with what to do next. |