| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove unnecessary log function call | verdant | 2026-08-05 | 1 | -1/+1 |
| | | |||||
| * | Implement a yes-or-no function | verdant | 2026-08-05 | 2 | -0/+15 |
| | | | | | If y is pressed, return true, or return false | ||||
| * | Print prompt at the beginning of function and use len instead of builtin ↵ | verdant | 2026-08-05 | 2 | -11/+7 |
| | | | | | variable | ||||
| * | Add Emacs and Vim keybindings for navigation | verdant | 2026-08-05 | 1 | -0/+28 |
| | | | | | | | | Add basic Control key combinations to handling_keys() for scrolling: - C-n / C-p for line navigation (Emacs style) - C-d / C-v for half-page down (Vim/Emacs style) - C-u / M-v for half-page up (Vim/Emacs style) | ||||
| * | Remove timeout call before event loop in main | verdant | 2026-08-03 | 1 | -1/+1 |
| | | |||||
| * | Add width character and icon support | verdant | 2026-08-03 | 4 | -4/+71 |
| | | |||||
| * | Sort directory items with directories first and case-insensitive name order | verdant | 2026-08-03 | 1 | -0/+26 |
| | | |||||
| * | Print "empty" when preview a empty directory | verdant | 2026-08-03 | 1 | -0/+4 |
| | | |||||
| * | Fix crash when scrolling in a empty directory | verdant | 2026-08-03 | 1 | -0/+3 |
| | | | | | Disable scrolling when it is a empty directory. | ||||
| * | Add else to handle other keys | verdant | 2026-08-03 | 1 | -2/+3 |
| | | |||||
| * | Return -1 to avoid creating directory when esc is pressed | verdant | 2026-08-03 | 1 | -1/+1 |
| | | |||||
| * | Print prompt | verdant | 2026-08-03 | 1 | -0/+3 |
| | | |||||
| * | Implement directory creating | verdant | 2026-08-03 | 3 | -0/+30 |
| | | |||||
| * | Add utils.h utils.c to provide get_input() | verdant | 2026-08-03 | 2 | -0/+59 |
| | | | | | | Print the prompt at the status bar, handle character, backspace, enter and escape. Modify the variable buf in place. | ||||
| * | Refactor main loop to reduce unnecessary redraw operations | verdant | 2026-08-03 | 1 | -30/+32 |
| | | |||||
| * | Add global variable status_window | verdant | 2026-08-03 | 2 | -1/+6 |
| | | |||||
| * | Initialize variable enveditor | verdant | 2026-08-03 | 1 | -0/+1 |
| | | |||||
| * | Add prototype definitaion to fix -Wmissing-prototypes warning | verdant | 2026-07-28 | 1 | -0/+1 |
| | | |||||
| * | Remove unused variable to fix -Wunused-variable warning | verdant | 2026-07-28 | 1 | -2/+0 |
| | | |||||
| * | Simplify directory preview logic with fm_preview_dir | verdant | 2026-07-28 | 1 | -11/+2 |
| | | |||||
| * | Reformat keys.c | verdant | 2026-07-28 | 1 | -1/+2 |
| | | |||||
| * | Remove unused comment | verdant | 2026-07-28 | 1 | -1/+0 |
| | | |||||
| * | 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 | 19 | -0/+1231 |
