update repo username
This commit is contained in:
parent
de53543675
commit
a272d4786e
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# ccc
|
||||
|
||||
`ccc` is a rewrite of [fff](https://github.com/piotr-marendowski/fff) in C aiming for usefulness and speed.
|
||||
`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`.
|
||||
|
||||
|
@ -24,7 +24,7 @@ Consider this project incomplete and WIP!
|
|||
| Bookmarks | | |
|
||||
| Bulk rename | | |
|
||||
|
||||
#### Features added that are not in [fff](https://github.com/piotr-marendowski/fff):
|
||||
#### Features added that are not in [fff](https://github.com/night0721/fff):
|
||||
|
||||
- File preview (without highlighting)
|
||||
|
||||
|
@ -43,7 +43,7 @@ Consider this project incomplete and WIP!
|
|||
You will need to run these with elevated privilages.
|
||||
|
||||
```
|
||||
$ git clone https://github.com/piotr-marendowski/ccc
|
||||
$ git clone https://github.com/night0721/ccc
|
||||
$ make
|
||||
# make install
|
||||
```
|
||||
|
|
2
ccc.c
2
ccc.c
|
@ -425,7 +425,7 @@ void show_help()
|
|||
wclear(directory_content);
|
||||
wclear(preview_content);
|
||||
wprintw(directory_content,"h: go to parent dir\nj: scroll down\nk: scroll up\nl: go to child dir\n\nleft: go to parent dir\ndown: scroll down\nup: scroll up\nright: go to child dir\n\nenter: go to child dir/open file\nbackspace: go to parent dir\n\ngg: go to top\nG: go to bottom\n\nctrl+u: jump up\nctrl+d: jump down\n\nt: go to trash dir\n~: go to home dir\n-: go to previous dir\nz: refresh current dir\n:: go to a directory by typing\nu: sort files\n\n.: toggle hidden files\ni: toggle file details\nX: toggle executable\n\nA: show directory disk usage/block size\n\nf: new file\nn: new dir\nr: rename\n\nspace: mark file\na: mark all files in directory\nd: trash\n\n?: show help\nq: exit with last dir written to file\nctrl+c exit without writing last dir");
|
||||
wpprintw("Visit https://github.com/piotr-marendowski/ccc or use 'man ccc' for help");
|
||||
wpprintw("Visit https://github.com/night0721/ccc or use 'man ccc' for help");
|
||||
wrefresh(directory_content);
|
||||
wrefresh(preview_content);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue