ccc/README.md

47 lines
1.6 KiB
Markdown
Raw Normal View History

# ccc
2024-03-09 12:52:45 +01:00
`ccc` is a rewrite of [fff](https://github.com/piotr-marendowski/fff) in C aiming for usefulness and speed.
2024-03-09 21:52:24 +01:00
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`.
## Features
2024-03-12 21:54:25 +01:00
- Vim-like key binding
- File Preview
2024-03-09 21:52:24 +01:00
Consider this project incomplete and WIP!
2024-03-12 21:54:25 +01:00
| Feature | Ported | Dropped | Added |
|--------------------------------|:------:|:-------:|:-----:|
| Standard movement | X | | |
| Advanced movement (jumps) | X | | |
| Searching | | | |
| File preview | | | X |
| Sorting | | | |
| Marking and marking operations | | | |
| Other operations on files | | | |
| File details | X | | |
| Image previews | | | |
| Help | | | |
| History | | | |
| Bookmarks | | | |
| Bulk rename | | | |
| Workspaces | | | |
2024-03-09 19:29:23 +01:00
### Dependencies
2024-03-09 12:52:45 +01:00
- gcc
2024-03-09 21:52:24 +01:00
- make
- pkg-config
2024-03-09 12:52:45 +01:00
- ncurses
2024-03-09 19:29:23 +01:00
2024-03-09 21:52:24 +01:00
### Building
2024-03-12 21:54:25 +01:00
You will need to run these with elevated privilages.
2024-03-09 12:52:45 +01:00
2024-03-12 21:54:25 +01:00
```sh
$ git clone https://github.com/piotr-marendowski/ccc
$ make
# make install
2024-03-09 12:52:45 +01:00
```