| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Refactor open_with_editor() | verdant | 2026-07-28 | 1 | -13/+3 |
| | | | | | | Use spawn() instead of fork child process and execute external commands manually. | ||||
| * | Add spawn wrapper for executing external commands | verdant | 2026-07-28 | 2 | -0/+34 |
| | | | | | | | | Inctroduce process.c and process.h providing spawn() function to fork a child process and execute commands via execvp(). Return -1 on invalid arguments or fork failure, and 0 on success. | ||||
| * | Reset view state only on successful directory load | verdant | 2026-07-28 | 1 | -9/+12 |
| | | |||||
| * | Remove unused definition | verdant | 2026-07-28 | 1 | -1/+0 |
| | | |||||
| * | Add preview path caching to prevent redundant I/O | verdant | 2026-07-28 | 2 | -9/+44 |
| | | |||||
| * | Move source files to src/ | verdant | 2026-07-28 | 20 | -1/+1 |
| | | |||||
| * | Fix a typo and tweak wording | verdant | 2026-07-28 | 1 | -1/+1 |
| | | |||||
| * | Delete plain text README, use markdown | verdant | 2026-07-28 | 2 | -15/+15 |
| | | |||||
| * | Reformat display.h | verdant | 2026-07-28 | 1 | -1/+2 |
| | | |||||
| * | Remove debug log | verdant | 2026-07-28 | 2 | -4/+2 |
| | | |||||
| * | Print permission infomation on the status bar | verdant | 2026-07-28 | 4 | -4/+53 |
| | | |||||
| * | Rewrite COLOR_PAIR macros definitions | verdant | 2026-07-28 | 1 | -0/+2 |
| | | |||||
| * | Remove unused macro definations and functions | verdant | 2026-07-28 | 2 | -26/+0 |
| | | |||||
| * | Reformat display.c main.c | verdant | 2026-07-28 | 2 | -7/+17 |
| | | |||||
| * | Implement status bar | verdant | 2026-07-28 | 3 | -1/+26 |
| | | | | | Print current working directory | ||||
| * | Reformat fm.c | verdant | 2026-07-28 | 1 | -22/+48 |
| | | |||||
| * | Reformat log.c | verdant | 2026-07-28 | 1 | -3/+6 |
| | | |||||
| * | Add util function: free_pointer_array | verdant | 2026-07-28 | 2 | -0/+18 |
| | | | | | | This function iterates through each element of pointer array, frees its memory, and finally free the array itself. | ||||
| * | Modify .clang-format | verdant | 2026-07-28 | 1 | -2/+11 |
| | | |||||
| * | Add format target to Makefile | verdant | 2026-07-28 | 1 | -1/+4 |
| | | |||||
| * | Fix function argument order and reformat | verdant | 2026-07-28 | 2 | -59/+64 |
| | | |||||
| * | Use global need_redraw variable in main loop | verdant | 2026-07-28 | 1 | -3/+2 |
| | | |||||
| * | Add analyze target to Makefile | verdant | 2026-07-28 | 1 | -2/+5 |
| | | |||||
| * | Implement open with editor | verdant | 2026-07-28 | 3 | -0/+81 |
| | | | | | | Fork a child process to run the text editor. If the "EDITOR" envrionment variable is not set, fallback to "vi". | ||||
| * | Remove varaible "need_redraw" in fm_info, use global variable | verdant | 2026-07-28 | 3 | -6/+6 |
| | | |||||
| * | Fix pane height | verdant | 2026-07-27 | 1 | -1/+1 |
| | | |||||
| * | Fix -Wformat-truncation warning and refactor redraw logic | verdant | 2026-07-27 | 1 | -28/+35 |
| | | |||||
| * | Remove unused variable | verdant | 2026-07-27 | 1 | -1/+0 |
| | | |||||
| * | Delete stat module | verdant | 2026-07-27 | 3 | -306/+0 |
| | | |||||
| * | Remove unused header file including | verdant | 2026-07-27 | 3 | -3/+0 |
| | | |||||
| * | Fix path normalization in path_normalize() | verdant | 2026-07-27 | 1 | -2/+10 |
| | | |||||
| * | Fix -Wmissing-prototypes warnings | verdant | 2026-07-27 | 2 | -0/+4 |
| | | |||||
| * | Move two util functions to the bottom | verdant | 2026-07-27 | 1 | -17/+17 |
| | | |||||
| * | Remove unused function: fm_print | verdant | 2026-07-27 | 1 | -13/+0 |
| | | |||||
| * | Remove unused header files | verdant | 2026-07-27 | 2 | -2/+0 |
| | | |||||
| * | Fix -Wstrict-prototypes warnings | verdant | 2026-07-27 | 1 | -3/+3 |
| | | |||||
| * | Fix -Wstrict-prototypes warning | verdant | 2026-07-27 | 2 | -2/+2 |
| | | |||||
| * | Remove unused files | verdant | 2026-07-27 | 2 | -15/+0 |
| | | |||||
| * | Implement directory preview | verdant | 2026-07-27 | 2 | -1/+16 |
| | | |||||
| * | Add optional CFLAGS and test subcommand | verdant | 2026-07-27 | 1 | -8/+18 |
| | | |||||
| * | Implement xdirname, xbasename | verdant | 2026-07-27 | 2 | -0/+88 |
| | | |||||
| * | Add display structure improvements | verdant | 2026-07-27 | 2 | -5/+30 |
| | | |||||
| * | Implement xrealloc | verdant | 2026-07-27 | 2 | -1/+12 |
| | | |||||
| * | Refactor main.c | verdant | 2026-07-27 | 1 | -59/+31 |
| | | |||||
| * | Reformat log.c log.h | verdant | 2026-07-27 | 2 | -35/+39 |
| | | |||||
| * | Remove unused argument | verdant | 2026-07-27 | 2 | -5/+19 |
| | | |||||
| * | Refactor fm | verdant | 2026-07-27 | 2 | -178/+269 |
| | | |||||
| * | Fix use-after-free of pointer "buf" | verdant | 2026-07-25 | 1 | -2/+1 |
| | | |||||
| * | Fix format string vulnerability in file preview | verdant | 2026-07-25 | 1 | -1/+1 |
| | | |||||
| * | Free the memory of buf to avoid leaking | verdant | 2026-07-25 | 1 | -1/+3 |
| | | |||||
