Compare commits
No commits in common. "5c036bbb73c9a3a1d5c3b74ad627b9a725b841ba" and "43591378e8070cf726e0b91227975955920711d3" have entirely different histories.
5c036bbb73
...
43591378e8
2 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
# ccc
|
||||
`ccc` is a rewrite of [fff](https://github.com/bogdan-the-great/fff) in C aiming for usefulness, size and speed with no dependency.
|
||||
`ccc` is a rewrite of [fff](https://github.com/night0721/fff) in C aiming for usefulness and speed.
|
||||
|
||||
The fact that it is written in C makes it more versatile and rapid, enabling us to add features that were previously ruled out due to time complexity. You may call it a `soft fork`.
|
||||
|
||||
|
@ -15,13 +15,14 @@ Consider this project incomplete and WIP!
|
|||
| Searching for files | | |
|
||||
| Sorting | X | |
|
||||
| Marking and marking operations | | |
|
||||
| Other operations on files | | |
|
||||
| Image previews | X | |
|
||||
| Help | X | |
|
||||
| History | | |
|
||||
| Bookmarks | | |
|
||||
| Bulk rename | | |
|
||||
|
||||
## Features added that are not in [fff](https://github.com/bogdan-the-great/fff):
|
||||
## Features added that are not in [fff](https://github.com/night0721/fff):
|
||||
- File preview
|
||||
|
||||
# Usage
|
||||
|
@ -93,7 +94,6 @@ p: execute paste/move/delete/bulk_rename
|
|||
|
||||
# Dependencies
|
||||
- Any [Nerd Font](https://www.nerdfonts.com/) for file icons (optional, but turned on by default)
|
||||
- libsixel (Optional)
|
||||
|
||||
# Building
|
||||
You will need to run these with elevated privilages.
|
||||
|
|
3
config.h
3
config.h
|
@ -1,7 +1,6 @@
|
|||
#define PATH_MAX 4096 /* Max length of path */
|
||||
|
||||
/* Settings */
|
||||
static int panel_height = 1; /* Panel height */
|
||||
static int panel_height = 1; /* panel height */
|
||||
static int jump_num = 14; /* Length of ctrl + u/d jump */
|
||||
static int decimal_place = 1; /* Number of decimal places size can be shown */
|
||||
|
||||
|
|
Loading…
Reference in a new issue