update usage

This commit is contained in:
Night Kaly 2024-04-05 17:53:45 +00:00
parent 4e6e450bf3
commit c9a289c837
Signed by: night0721
GPG key ID: 957D67B8DB7A119B
3 changed files with 32 additions and 13 deletions

View file

@ -19,7 +19,7 @@ Consider this project incomplete and WIP!
| Marking and marking operations | | | | Marking and marking operations | | |
| Other operations on files | | | | Other operations on files | | |
| Image previews | | | | Image previews | | |
| Help | | | | Help | X | |
| History | | | | History | | |
| Bookmarks | | | | Bookmarks | | |
| Bulk rename | | | | Bulk rename | | |
@ -55,9 +55,9 @@ j: scroll down
k: scroll up k: scroll up
l: go to child dir l: go to child dir
left: go to parent dir left: go to parent dir
down: scroll down down: scroll down
up: scroll up up: scroll up
right: go to child dir right: go to child dir
enter: go to child dir/open file enter: go to child dir/open file
@ -78,8 +78,12 @@ i: toggle file details
X: toggle executable X: toggle executable
A: show directory disk usage/block size A: show directory disk usage/block size
f: new file
space: mark file space: mark file
a: mark all files in directory a: mark all files in directory
d: trash
?: show help ?: show help
q: exit with last dir written to file q: exit with last dir written to file

31
ccc.1
View file

@ -11,30 +11,45 @@ ccc is a rewrite of fff file manager in C aiming for usefulness and speed. The f
. .
.nf .nf
h: go to parent dir
j: scroll down j: scroll down
k: scroll up k: scroll up
h: go to parent dir
l: go to child dir l: go to child dir
down: scroll down left: go to parent dir
up: scroll up down: scroll down
left: go to parent dir up: scroll up
right: go to child dir right: go to child dir
enter: go to child dir/open file enter: go to child dir/open file
backspace: go to parent dir backspace: go to parent dir
g: go to top gg: go to top
G: go to bottom G: go to bottom
t: go to trash ctrl+u: jump up
~: go to home ctrl+d: jump down
t: go to trash dir
~: go to home dir
-: go to previous dir
z: refresh current dir z: refresh current dir
i: toggle file details
X: toggle executable
A: show directory disk usage/block size
f: new file
space: mark file space: mark file
a: mark all files in directory a: mark all files in directory
d: trash
?: show help
q: exit with last dir written to file
ctrl+c exit without writing last dir
q: exit
. .
.fi .fi
. .

2
ccc.c
View file

@ -380,7 +380,7 @@ void show_help()
{ {
wclear(directory_content); wclear(directory_content);
wclear(preview_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\ni: toggle file details\nX: toggle executable\n\nA: show directory disk usage/block size\nspace: mark file\na: mark all files in directory\n\n?: show help\nq: exit with last dir written to file\nctrl+c exit without writing last dir"); 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\ni: toggle file details\nX: toggle executable\n\nA: show directory disk usage/block size\n\nf: new file\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/piotr-marendowski/ccc or use 'man ccc' for help");
wrefresh(directory_content); wrefresh(directory_content);
wrefresh(preview_content); wrefresh(preview_content);