?? command.h
字號:
#ifndef __COMMAND_H
#define __COMMAND_H
typedef struct {
WInput input;
callback_fn old_callback;
} WCommand;
WCommand *command_new (int y, int x, int len);
/* Return the Input * from a WCommand */
#define input_w(x) (&(x->input))
extern WCommand *cmdline;
void do_cd_command (char *cmd);
#endif /* __COMMAND_H */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -