python.c
来自「elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, el」· C语言 代码 · 共 24 行
C
24 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?