mirror of https://github.com/xzeldon/htop.git
doc fix
This commit is contained in:
parent
6330ff3a0a
commit
9b8d11d9f1
4
htop.1
4
htop.1
|
@ -50,6 +50,10 @@ Trace process system calls: if strace(1) is installed, pressing this key
|
||||||
will attach it to the currently selected process, presenting a live
|
will attach it to the currently selected process, presenting a live
|
||||||
update of system calls issued by the process.
|
update of system calls issued by the process.
|
||||||
.TP
|
.TP
|
||||||
|
.B l
|
||||||
|
Display open files for a process: if lsof(1) is installed, pressing this key
|
||||||
|
will display the list of file descriptors opened by the process.
|
||||||
|
.TP
|
||||||
.B F1, h
|
.B F1, h
|
||||||
Help screen
|
Help screen
|
||||||
.TP
|
.TP
|
||||||
|
|
2
htop.c
2
htop.c
|
@ -139,7 +139,7 @@ static void showHelp(ProcessList* pl) {
|
||||||
mvaddstr(18, 0, " a:");
|
mvaddstr(18, 0, " a:");
|
||||||
#endif
|
#endif
|
||||||
mvaddstr(19, 0, " F2 S"); mvaddstr(19,40, " F6 >");
|
mvaddstr(19, 0, " F2 S"); mvaddstr(19,40, " F6 >");
|
||||||
mvaddstr(20, 0, " F1 h");
|
mvaddstr(20, 0, " F1 h"); mvaddstr(20,40, " l");
|
||||||
mvaddstr(21, 0, " F10 q"); mvaddstr(21,40, " s");
|
mvaddstr(21, 0, " F10 q"); mvaddstr(21,40, " s");
|
||||||
attrset(CRT_colors[DEFAULT_COLOR]);
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue