如何让 Python 插件在 Pluma 中工作?

如何让 Python 插件在 Pluma 中工作?

我正在尝试添加 Python 插件路径保存到文本编辑器 Pluma*(这是一个 Gedit 分支),但该插件没有显示在 Pluma 首选项的“活动插件”列表中。另外,我还编译了支持 Python 的 Pluma。有任何想法吗?

$ cat ~/.config/pluma/plugins/trailsave.pluma-plugin
[Pluma Plugin]
Loader=python
Module=trailingspaces
IAge=2
Name=Trailing Spaces
Description=Makes trailing spaces very visible
Authors=Gustavo Noronha Silva <[email protected]>
Copyright=Copyright © 2012 Gustavo Noronha Silva
Website=https://gitorious.org/gedit-trailing-spaces

据我了解,只要上面的插件配置文件正确,插件就会显示在列表中。我的下一个任务是重写 Pluma 的 Python 代码。

*我切换到 Pluma 的原因是 Debian 8(稳定)中的 Gedit 中使用的客户端装饰无法与我选择的窗口管理器(Blackbox)一起使用。

答案1

从源打印出插件路径后,我发现 Pluma 在~/.local/share/pluma/plugins..pluma-plugin但是配置文件是正确的。

相关内容