From a272d4786efb00bd4e302240958e371843e8ac5e Mon Sep 17 00:00:00 2001 From: night0721 Date: Tue, 30 Apr 2024 17:09:33 +0100 Subject: [PATCH] update repo username --- README.md | 6 +++--- ccc.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ed345cd..a21c8f0 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/ccc.c b/ccc.c index 17a1d35..2c9f421 100644 --- a/ccc.c +++ b/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); }