📄 shell.h
字号:
#ifndef _SHELL_H_#define _SHELL_H_typedef struct{ char* name; rl_icpfunc_t* func; char* doc; char* args;} Command;extern Command commands[];char* _commandGenerator PARAMS((const char*, int));void initReadline();int findCommand(Command** out_c, char* name);/* Warning: modifies str FIXME: add strdup to prevent it? */intexecuteLine(char* str);voidopenShell();#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -