📄 python.c
字号:
/* Python module */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "scripting/python/core.h"#include "elinks.h"#include "main/module.h"#include "scripting/python/hooks.h"struct module python_scripting_module = struct_module( /* name: */ "Python", /* options: */ NULL, /* hooks: */ python_scripting_hooks, /* submodules: */ NULL, /* data: */ NULL, /* init: */ init_python, /* done: */ cleanup_python);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -