我已为geany终端vte启用了python编程
Route::get('/storage/document/3/4a15c1ab060be8f35.png', function () {
return 'ok';
});
现在我正在使用清除我的vte终端
edit>preference>terminal>shell=/usr/bin/python
我想创建一个简单的插件来清除菜单中的终端vte屏幕。我已经在geany中使用了helloworld程序来创建此示例插件
Send selection to terminal
{
import os
os. system('clear')
}
这不起作用,因为它没有在vte终端内执行python代码。我尝试过文档,但没有太大帮助。